diff --git a/master/master.cfg b/master/master.cfg index d11469af..22e0c50e 100644 --- a/master/master.cfg +++ b/master/master.cfg @@ -184,12 +184,19 @@ cpulock = locks.WorkerLock( def is_important_file(filename): unimportant_prefixes = ( + ".azure-pipelines/", + ".devcontainer/" ".github/", - ".gitignore", - ".vsts", - "Misc/", + ".well-known/", "Doc/", - "Demo/", + "InternalDocs/", + "Misc/", + ".coveragerc", + ".editorconfig", + ".gitattributes", + ".gitignore", + ".mailmap", + "LICENSE" ) unimportant_suffixes = ( ".md", @@ -197,6 +204,7 @@ def is_important_file(filename): ".yml", ".yaml", "README", + "ruff.toml", ) if filename.lstrip("\\/").startswith(unimportant_prefixes): return False