We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
is_important_file()
1 parent 3162593 commit fb0a097Copy full SHA for fb0a097
master/master.cfg
@@ -184,19 +184,28 @@ 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
+ ".txt",
203
".md",
204
".rst",
205
".yml",
206
".yaml",
207
"README",
208
+ "ruff.toml",
209
210
if filename.lstrip("\\/").startswith(unimportant_prefixes):
211
return False
0 commit comments