mirror of
https://github.com/FlipsideCrypto/sdk.git
synced 2026-02-06 02:36:43 +00:00
16 lines
447 B
INI
16 lines
447 B
INI
[MASTER]
|
|
disable=
|
|
format, # Handled by Black autoformatter
|
|
E0401, # Unable to import X; import errors are highly environment dependant
|
|
C0114, # Missing module docstring
|
|
C0115, # Missing class docstring
|
|
C0116, # Missing function or method docstring
|
|
C0411, # Import order handled by isort
|
|
|
|
[MESSAGES CONTROL]
|
|
disable = C0330, C0326 # Black compatible
|
|
|
|
[flake8]
|
|
max-line-length = 160
|
|
max-complexity = 15
|
|
exclude = tests/* |