Skip to content

Commit 71234dc

Browse files
Update and expand unimportant file lists (#677)
1 parent 072d8be commit 71234dc

File tree

1 file changed

+12
-4
lines changed

1 file changed

+12
-4
lines changed

master/master.cfg

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -184,19 +184,27 @@ cpulock = locks.WorkerLock(
184184

185185
def is_important_file(filename):
186186
unimportant_prefixes = (
187+
".azure-pipelines/",
188+
".devcontainer/"
187189
".github/",
188-
".gitignore",
189-
".vsts",
190-
"Misc/",
190+
".well-known/",
191191
"Doc/",
192-
"Demo/",
192+
"InternalDocs/",
193+
"Misc/",
194+
".coveragerc",
195+
".editorconfig",
196+
".gitattributes",
197+
".gitignore",
198+
".mailmap",
199+
"LICENSE"
193200
)
194201
unimportant_suffixes = (
195202
".md",
196203
".rst",
197204
".yml",
198205
".yaml",
199206
"README",
207+
"ruff.toml",
200208
)
201209
if filename.lstrip("\\/").startswith(unimportant_prefixes):
202210
return False

0 commit comments

Comments
 (0)