File tree Expand file tree Collapse file tree 2 files changed +25
-13
lines changed
Expand file tree Collapse file tree 2 files changed +25
-13
lines changed Original file line number Diff line number Diff line change 22max-line-length = 120
33max-complexity = 10
44ignore =
5- E501, # line too long, it is covered by pylint
6- E722, # bare except, bad practice, to be removed in the future
7- F401, # imported but unused, too many violations, to be removed in the future
8- F811, # redefinition of unused, to be removed in the future
9- C901 # code flow is too complex, too many violations, to be removed in the future
10- W504 # line break after binary operator effect on readability is subjective
5+ # line too long, it is covered by pylint
6+ E501,
7+ # bare except, bad practice, to be removed in the future
8+ E722,
9+ # imported but unused, too many violations, to be removed in the future
10+ F401,
11+ # redefinition of unused, to be removed in the future
12+ F811,
13+ # code flow is too complex, too many violations, to be removed in the future
14+ C901,
15+ # line break after binary operator effect on readability is subjective
16+ W504
1117exclude =
1218 azure_cli_bdist_wheel.py
1319 build
1420 tools
1521 scripts
1622 doc
1723 build_scripts
18- */grammar/
24+ */grammar/
Original file line number Diff line number Diff line change 22max-line-length = 120
33max-complexity = 10
44ignore =
5- E501, # line too long, it is covered by pylint
6- E722, # bare except, bad practice, to be removed in the future
7- F401, # imported but unused, too many violations, to be removed in the future
8- F811, # redefinition of unused, to be removed in the future
9- C901 # code flow is too complex, too many violations, to be removed in the future
10- W504 # line break after binary operator effect on readability is subjective
5+ # line too long, it is covered by pylint
6+ E501,
7+ # bare except, bad practice, to be removed in the future
8+ E722,
9+ # imported but unused, too many violations, to be removed in the future
10+ F401,
11+ # redefinition of unused, to be removed in the future
12+ F811,
13+ # code flow is too complex, too many violations, to be removed in the future
14+ C901,
15+ # line break after binary operator effect on readability is subjective
16+ W504
1117exclude =
1218 */vendored_sdks
1319 docs
You can’t perform that action at this time.
0 commit comments