We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 072d8be commit 71234dcCopy full SHA for 71234dc
master/master.cfg
@@ -184,19 +184,27 @@ cpulock = locks.WorkerLock(
184
185
def is_important_file(filename):
186
unimportant_prefixes = (
187
+ ".azure-pipelines/",
188
+ ".devcontainer/"
189
".github/",
- ".gitignore",
- ".vsts",
190
- "Misc/",
+ ".well-known/",
191
"Doc/",
192
- "Demo/",
+ "InternalDocs/",
193
+ "Misc/",
194
+ ".coveragerc",
195
+ ".editorconfig",
196
+ ".gitattributes",
197
+ ".gitignore",
198
+ ".mailmap",
199
+ "LICENSE"
200
)
201
unimportant_suffixes = (
202
".md",
203
".rst",
204
".yml",
205
".yaml",
206
"README",
207
+ "ruff.toml",
208
209
if filename.lstrip("\\/").startswith(unimportant_prefixes):
210
return False
0 commit comments