Skip to content

Commit

Permalink
Fix flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
bebound committed Feb 6, 2023
1 parent 87cb41c commit 56a5863
Showing 1 changed file with 13 additions and 7 deletions.
20 changes: 13 additions & 7 deletions azdev/config/cli.flake8
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,23 @@
max-line-length = 120
max-complexity = 10
ignore =
E501, # line too long, it is covered by pylint
E722, # bare except, bad practice, to be removed in the future
F401, # imported but unused, too many violations, to be removed in the future
F811, # redefinition of unused, to be removed in the future
C901 # code flow is too complex, too many violations, to be removed in the future
W504 # line break after binary operator effect on readability is subjective
# line too long, it is covered by pylint
E501
# bare except, bad practice, to be removed in the future
E722
# imported but unused, too many violations, to be removed in the future
F401
# redefinition of unused, to be removed in the future
F811
# code flow is too complex, too many violations, to be removed in the future
C901
# line break after binary operator effect on readability is subjective
W504
exclude =
azure_cli_bdist_wheel.py
build
tools
scripts
doc
build_scripts
*/grammar/
*/grammar/

0 comments on commit 56a5863

Please sign in to comment.