2017-11-01 20:20:00 +03:00
|
|
|
[flake8]
|
|
|
|
max-line-length = 120
|
|
|
|
max-complexity = 10
|
|
|
|
ignore =
|
2023-12-13 13:15:08 +03:00
|
|
|
# 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 before binary operator effect on readability is subjective
|
|
|
|
W503
|
|
|
|
# line break after binary operator effect on readability is subjective
|
|
|
|
W504
|
2021-05-12 12:18:02 +03:00
|
|
|
exclude =
|
2018-07-17 00:09:54 +03:00
|
|
|
*/vendored_sdks
|
|
|
|
docs
|
|
|
|
scripts
|
|
|
|
./src/eventgrid/azext_eventgrid/mgmt/eventgrid
|
|
|
|
./src/managementgroups/azext_managementgroups/managementgroups
|
|
|
|
./src/managementpartner/azext_managementpartner/managementpartner
|
2019-12-16 07:20:19 +03:00
|
|
|
./src/subscription/azext_subscription/subscription
|
2020-09-14 12:28:33 +03:00
|
|
|
*/grammar/
|
2021-05-12 12:18:02 +03:00
|
|
|
tests
|