aboutsummaryrefslogtreecommitdiff
path: root/test/lint/lint-files.py
diff options
context:
space:
mode:
authorfanquake <fanquake@gmail.com>2022-06-11 14:29:09 +0100
committerfanquake <fanquake@gmail.com>2022-06-15 12:56:44 +0100
commitd873ff96e51a3e7f2fdc3fdd1baee2bbe7583e06 (patch)
treed75c5d34033c6c709985a4697053a31def926533 /test/lint/lint-files.py
parente2aa7047f9b94232ff4958381321e6867d24b379 (diff)
downloadbitcoin-d873ff96e51a3e7f2fdc3fdd1baee2bbe7583e06.tar.xz
refactor: cleanups post unsubtree'ing univalue
Mostly changes to remove src/univalue exceptions from the various linters, and the required code changes to make them happy. As well as minor doc changes.
Diffstat (limited to 'test/lint/lint-files.py')
-rwxr-xr-xtest/lint/lint-files.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lint/lint-files.py b/test/lint/lint-files.py
index dbb51ce54e..123bee2cbc 100755
--- a/test/lint/lint-files.py
+++ b/test/lint/lint-files.py
@@ -21,7 +21,7 @@ ALL_SOURCE_FILENAMES_REGEXP = r"^.*\.(cpp|h|py|sh)$"
ALLOWED_FILENAME_REGEXP = "^[a-zA-Z0-9/_.@][a-zA-Z0-9/_.@-]*$"
ALLOWED_SOURCE_FILENAME_REGEXP = "^[a-z0-9_./-]+$"
ALLOWED_SOURCE_FILENAME_EXCEPTION_REGEXP = (
- "^src/(secp256k1/|minisketch/|univalue/|test/fuzz/FuzzedDataProvider.h)"
+ "^src/(secp256k1/|minisketch/|test/fuzz/FuzzedDataProvider.h)"
)
ALLOWED_PERMISSION_NON_EXECUTABLES = 0o644
ALLOWED_PERMISSION_EXECUTABLES = 0o755