foundationdb/.flake8
LukasMoll d5fb11eccb
Python pre-commit pipeline to enforce best practices. (#8181)
* Ãmade config files for black and flake8 pre-commit pipeline

* added documentation for pre-commit pipeline

* Mitigates tag change error

* removed black version in pre commit config

* Add E711 to the list of ignored flake8 errors

See #330

Co-authored-by: Lukas Molleman <Lukas.Molleman@gmail.com>
Co-authored-by: Andrew Noyes <andrew.noyes@snowflake.com>
2022-09-30 13:18:55 -07:00

5 lines
124 B
INI

[flake8]
ignore = E203, E266, E501, W503, F403, F401, E711
max-line-length = 79
max-complexity = 18
select = B,C,E,F,W,T4,B9