mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 13:09:21 +01:00
meta: remove unneeded ignore rules from ruff
PR-URL: https://github.com/nodejs/node/pull/54360 Reviewed-By: Christian Clauss <cclauss@me.com>
This commit is contained in:
parent
0c5fa57bc7
commit
c6ae161237
@ -5,6 +5,7 @@ exclude = [
|
||||
"tools/gyp",
|
||||
"tools/inspector_protocol",
|
||||
"tools/eslint/node_modules",
|
||||
"tools/github_reporter"
|
||||
]
|
||||
line-length = 172
|
||||
target-version = "py38"
|
||||
@ -40,12 +41,6 @@ ignore = [
|
||||
[tool.ruff.lint.mccabe]
|
||||
max-complexity = 100
|
||||
|
||||
[tool.ruff.lint.per-file-ignores]
|
||||
"tools/checkimports.py" = ["W605"]
|
||||
"tools/gyp/pylib/gyp/xcodeproj_file.py" = ["PLE0101"]
|
||||
"tools/icu/shrink-icu-src.py" = ["W605"]
|
||||
"tools/mkssldef.py" = ["W605"]
|
||||
|
||||
[tool.ruff.lint.pylint]
|
||||
max-args = 12
|
||||
max-branches = 110
|
||||
|
@ -48,7 +48,7 @@ def print_size(fn):
|
||||
size = (os.stat(fn).st_size) / 1024000
|
||||
print('%dM\t%s' % (size, fn))
|
||||
|
||||
ignore_regex = re.compile('^.*\.(vcxproj|filters|nrm|icu|dat|xml|txt|ac|guess|m4|in|sub|py|mak)$')
|
||||
ignore_regex = re.compile(r'^.*\.(vcxproj|filters|nrm|icu|dat|xml|txt|ac|guess|m4|in|sub|py|mak)$')
|
||||
|
||||
def icu_ignore(dir, files):
|
||||
subdir = dir[len(options.icusrc)+1::]
|
||||
|
Loading…
Reference in New Issue
Block a user