diff options
Diffstat (limited to 'run_project_tests.py')
-rwxr-xr-x | run_project_tests.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/run_project_tests.py b/run_project_tests.py index 0d64f47..0245148 100755 --- a/run_project_tests.py +++ b/run_project_tests.py @@ -697,6 +697,8 @@ def check_format(): if '.dub' in root: # external deps are here continue for fname in files: + if fname.startswith('.#') or fname.startswith('#'): # Emacs temp files. + continue if os.path.splitext(fname)[1].lower() in check_suffixes: bn = os.path.basename(fname) if bn == 'sitemap.txt' or bn == 'meson-test-run.txt': |