parent
0d20f18212
commit
714f1e57b1
|
@ -44,7 +44,7 @@
|
||||||
name: check illegal windows names
|
name: check illegal windows names
|
||||||
entry: Illegal windows filenames detected
|
entry: Illegal windows filenames detected
|
||||||
language: fail
|
language: fail
|
||||||
files: '(?i)(^|/)(CON|PRN|AUX|NUL|COM[1-9]|LPT[1-9])(\.|/|$)'
|
files: '(?i)((^|/)(CON|PRN|AUX|NUL|COM[1-9]|LPT[1-9])(\.|/|$)|:)'
|
||||||
- id: check-json
|
- id: check-json
|
||||||
name: check json
|
name: check json
|
||||||
description: checks json files for parseable syntax.
|
description: checks json files for parseable syntax.
|
||||||
|
|
|
@ -28,6 +28,8 @@ def hook_re():
|
||||||
pytest.param('aux', id='without ext'),
|
pytest.param('aux', id='without ext'),
|
||||||
pytest.param('AuX.tXt', id='capitals'),
|
pytest.param('AuX.tXt', id='capitals'),
|
||||||
pytest.param('com7.dat', id='com with digit'),
|
pytest.param('com7.dat', id='com with digit'),
|
||||||
|
pytest.param(':', id='bare colon'),
|
||||||
|
pytest.param('file:Zone.Identifier', id='mid colon'),
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
def test_check_illegal_windows_names_matches(hook_re, s):
|
def test_check_illegal_windows_names_matches(hook_re, s):
|
||||||
|
|
Loading…
Reference in New Issue