mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-22 06:01:05 -05:00
46b9e49099
* Add find-unicode-control2 * make version easier * cleaner version Co-authored-by: Lukas Gravley <admiralawkbar@github.com>
10 lines
356 B
Python
10 lines
356 B
Python
scan_exclude = [
|
|
# Iconv test data
|
|
r"/iconvdata/testdata/",
|
|
# Test case data
|
|
r"libio/tst-widetext.input$",
|
|
# Test script. This is to silence the warning:
|
|
# 'utf-8' codec can't decode byte 0xe9 in position 2118: invalid continuation byte
|
|
# since the script tests mixed encoding characters.
|
|
r"localedata/tst-langinfo.sh$",
|
|
]
|