Files
zulip/tools/linter_lib/exclude.py
2025-07-16 19:59:20 -07:00

11 lines
241 B
Python

# Exclude some directories and files from lint checking
EXCLUDED_FILES = [
# Third-party code that doesn't match our style
"web/third",
]
PUPPET_CHECK_RULES_TO_EXCLUDE = [
"--no-documentation-check",
"--no-80chars-check",
]