Skip to content

Commit

Permalink
Merge pull request #1689 from gofr/1685/document-skip
Browse files Browse the repository at this point in the history
Clarify documentation for --skip option
  • Loading branch information
timothycrosley committed Mar 12, 2021
2 parents f76ed04 + 6fb82c3 commit a3afea9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion isort/main.py
Expand Up @@ -312,7 +312,9 @@ def _build_arg_parser() -> argparse.ArgumentParser:
"-s",
"--skip",
help="Files that sort imports should skip over. If you want to skip multiple "
"files you should specify twice: --skip file1 --skip file2.",
"files you should specify twice: --skip file1 --skip file2. Values can be "
"file names, directory names or file paths. To skip all files in a nested path "
"use --skip-glob.",
dest="skip",
action="append",
)
Expand Down

0 comments on commit a3afea9

Please sign in to comment.