forked from Azure/azure-cli-extensions
-
Notifications
You must be signed in to change notification settings - Fork 2
/
.flake8
19 lines (19 loc) · 808 Bytes
/
.flake8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
[flake8]
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
exclude =
*/vendored_sdks
docs
scripts
./src/eventgrid/azext_eventgrid/mgmt/eventgrid
./src/managementgroups/azext_managementgroups/managementgroups
./src/managementpartner/azext_managementpartner/managementpartner
./src/subscription/azext_subscription/subscription
*/grammar/