We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f50af2 commit e47deeeCopy full SHA for e47deee
1 file changed
pyproject.toml
@@ -97,17 +97,17 @@ ignore = [
97
'W504', # Line break occurred after a binary operator
98
]
99
per-file-ignores = [
100
- '__init__.py:F401',
+ '**/__init__.py:F401',
101
102
max-line-length = 79
103
exclude = [
104
- # No need to traverse git directory
+ # speed up .py files discovery
105
'.git',
106
- # There's no value in checking cache directories
+ # cache directories
107
'__pycache__',
108
# Virtual environment folders (same as in .gitignore)
109
'venv', 'env',
110
- # Documentation build output copies examples files for their download
+ # built documentation generates .py examples files for their download, skip them
111
'docs/sphinx/build',
112
113
0 commit comments