File tree Expand file tree Collapse file tree 2 files changed +2
-7
lines changed Expand file tree Collapse file tree 2 files changed +2
-7
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ exclude = [
55 " tools/gyp" ,
66 " tools/inspector_protocol" ,
77 " tools/eslint/node_modules" ,
8+ " tools/github_reporter"
89]
910line-length = 172
1011target-version = " py38"
@@ -40,12 +41,6 @@ ignore = [
4041[tool .ruff .lint .mccabe ]
4142max-complexity = 100
4243
43- [tool .ruff .lint .per-file-ignores ]
44- "tools/checkimports.py" = [" W605" ]
45- "tools/gyp/pylib/gyp/xcodeproj_file.py" = [" PLE0101" ]
46- "tools/icu/shrink-icu-src.py" = [" W605" ]
47- "tools/mkssldef.py" = [" W605" ]
48-
4944[tool .ruff .lint .pylint ]
5045max-args = 12
5146max-branches = 110
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ def print_size(fn):
4848 size = (os .stat (fn ).st_size ) / 1024000
4949 print ('%dM\t %s' % (size , fn ))
5050
51- ignore_regex = re .compile ('^.*\.(vcxproj|filters|nrm|icu|dat|xml|txt|ac|guess|m4|in|sub|py|mak)$' )
51+ ignore_regex = re .compile (r '^.*\.(vcxproj|filters|nrm|icu|dat|xml|txt|ac|guess|m4|in|sub|py|mak)$' )
5252
5353def icu_ignore (dir , files ):
5454 subdir = dir [len (options .icusrc )+ 1 ::]
You can’t perform that action at this time.
0 commit comments