Skip to content

Commit 3431ddc

Browse files
robnaglerclaude
andauthored
Fix #644 exclude static/wp_en from check_eof_newline (#645)
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent eb2543f commit 3431ddc

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

pykern/pkcli/ci.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@
1919
#: static/js/ext is where Sirepo stores 3rd party library files
2020
_CHECK_FILES = PKDict(
2121
check_eof_newline=PKDict(
22-
exclude_files=re.compile(r"/static/js/ext/|node_modules/|^run/|^tests/|^venv/"),
22+
exclude_files=re.compile(
23+
r"/static/js/ext/|/static/wp_en/|node_modules/|^run/|^tests/|^venv/"
24+
),
2325
include_files=re.compile(r"\.(html|jinja|js|json|md|py|tsx|yml)$"),
2426
),
2527
check_main=PKDict(

0 commit comments

Comments
 (0)