Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
fix: Disable flake8 w503 (Azure#357)
* Update cli.flake8

* Update ext.flake8

* Update .flake8

* Update pyproject.toml

* Update pyproject.toml
  • Loading branch information
dciborow authored Mar 3, 2023
commit 35bf6e5d3acfe9671053150d118fffc960c9b014
1 change: 1 addition & 0 deletions .flake8
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ ignore =
F401,
F811,
C901,
W503,
W504

exclude =
Expand Down
3 changes: 2 additions & 1 deletion azdev/config/cli.flake8
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ ignore =
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
W503 # line break before binary operator
W504 # line break after binary operator effect on readability is subjective
exclude =
azure_cli_bdist_wheel.py
Expand All @@ -15,4 +16,4 @@ exclude =
scripts
doc
build_scripts
*/grammar/
*/grammar/
1 change: 1 addition & 0 deletions azdev/config/ext.flake8
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ ignore =
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
W503 # line break before binary operator
W504 # line break after binary operator effect on readability is subjective
exclude =
*/vendored_sdks
Expand Down