You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/configuration/options.md
+6-5
Original file line number
Diff line number
Diff line change
@@ -57,7 +57,7 @@ Force specific imports to the top of their appropriate section.
57
57
58
58
## Skip
59
59
60
-
Files that isort should skip over. If you want to skip multiple 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.
60
+
Files that isort should skip over. If you want to skip multiple 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`](#skip-glob). To even skip matching files that have been specified on the command line, use [`--filter-files`](#filter-files).
Extends --skip to add additional files that isort should skip over. If you want to skip multiple 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.
90
+
Extends --skip to add additional files that isort should skip over. If you want to skip multiple 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`](#skip-glob). To even skip matching files that have been specified on the command line, use [`--filter-files`](#filter-files).
Files that isort should skip over. To even skip matching files that have been specified on the command line, use [`--filter-files`](#filter-files).
120
120
121
121
**Type:** List of Strings
122
122
**Default:**`frozenset()`
@@ -147,7 +147,7 @@ skip_glob = ["docs/*"]
147
147
148
148
## Extend Skip Glob
149
149
150
-
Additional files that isort should skip over (extending --skip-glob).
150
+
Additional files that isort should skip over (extending --skip-glob). To even skip matching files that have been specified on the command line, use [`--filter-files`](#filter-files).
Treat project as a git repository and ignore files listed in .gitignore.
180
+
Treat project as a git repository and ignore files listed in .gitignore. To even skip matching files that have been specified on the command line, use [`--filter-files`](#filter-files).
181
+
181
182
NOTE: This requires git to be installed and accessible from the same shell as isort.
0 commit comments