mirror of
https://github.com/frappe/bench.git
synced 2024-11-11 07:41:03 +00:00
a84239d6ab
* Drop patches of v3 & v4 * Re-write buggy / broken code wrt hints by pre-commit checks * Auto-format and transform code * Remove re-written & mutable function defaults
38 lines
594 B
INI
38 lines
594 B
INI
[flake8]
|
|
ignore =
|
|
E121,
|
|
E126,
|
|
E127,
|
|
E128,
|
|
E203,
|
|
E225,
|
|
E226,
|
|
E231,
|
|
E241,
|
|
E251,
|
|
E261,
|
|
E265,
|
|
E302,
|
|
E303,
|
|
E305,
|
|
E402,
|
|
E501,
|
|
E741,
|
|
W291,
|
|
W292,
|
|
W293,
|
|
W391,
|
|
W503,
|
|
W504,
|
|
F403,
|
|
B007,
|
|
B950,
|
|
W191,
|
|
E124, # closing bracket, irritating while writing QB code
|
|
E131, # continuation line unaligned for hanging indent
|
|
E123, # closing bracket does not match indentation of opening bracket's line
|
|
E101, # ensured by use of black
|
|
B009, # allow usage of getattr
|
|
|
|
max-line-length = 200
|