Skip to content

Commit 9e3f67e

Browse files
committed
Skip .DS_Store when linting
1 parent 17548ed commit 9e3f67e

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Diff for: scripts/checkstyle.py

+3
Original file line numberDiff line numberDiff line change
@@ -254,6 +254,9 @@ def main():
254254
for file in Path.cwd().glob('**/*'):
255255
if '.git' in str(file.absolute()):
256256
continue
257+
258+
if file.name == '.DS_Store':
259+
continue
257260

258261
if file.is_file():
259262
lintfile(file, rules, options)

0 commit comments

Comments
 (0)