Skip to content

Commit

Permalink
meta: remove unneeded ignore rules from ruff
Browse files Browse the repository at this point in the history
PR-URL: #54360
Reviewed-By: Christian Clauss <[email protected]>
  • Loading branch information
RedYetiDev committed Sep 18, 2024
1 parent 0c5fa57 commit c6ae161
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
7 changes: 1 addition & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ exclude = [
"tools/gyp",
"tools/inspector_protocol",
"tools/eslint/node_modules",
"tools/github_reporter"
]
line-length = 172
target-version = "py38"
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tools/icu/shrink-icu-src.py
Original file line number Diff line number Diff line change
Expand Up @@ -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::]
Expand Down

0 comments on commit c6ae161

Please sign in to comment.