Skip to content

Commit 35bf6e5

Browse files
authored
fix: Disable flake8 w503 (#357)
* Update cli.flake8 * Update ext.flake8 * Update .flake8 * Update pyproject.toml * Update pyproject.toml
1 parent eee6d32 commit 35bf6e5

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

.flake8

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ ignore =
77
F401,
88
F811,
99
C901,
10+
W503,
1011
W504
1112

1213
exclude =

azdev/config/cli.flake8

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ ignore =
77
F401, # imported but unused, too many violations, to be removed in the future
88
F811, # redefinition of unused, to be removed in the future
99
C901 # code flow is too complex, too many violations, to be removed in the future
10+
W503 # line break before binary operator
1011
W504 # line break after binary operator effect on readability is subjective
1112
exclude =
1213
azure_cli_bdist_wheel.py
@@ -15,4 +16,4 @@ exclude =
1516
scripts
1617
doc
1718
build_scripts
18-
*/grammar/
19+
*/grammar/

azdev/config/ext.flake8

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ ignore =
77
F401, # imported but unused, too many violations, to be removed in the future
88
F811, # redefinition of unused, to be removed in the future
99
C901 # code flow is too complex, too many violations, to be removed in the future
10+
W503 # line break before binary operator
1011
W504 # line break after binary operator effect on readability is subjective
1112
exclude =
1213
*/vendored_sdks

0 commit comments

Comments
 (0)