Move flake8 config from toml to .flake8 as flake8 does not play nice with pyproject.toml and add pre-commit hook for flake8

This commit is contained in:
Cosmin Ciocan
2024-01-12 17:45:37 +01:00
parent ee68b4025b
commit 182e3519ad
9 changed files with 31 additions and 33 deletions
+5
View File
@@ -0,0 +1,5 @@
[flake8]
max-line-length = 79
select = F,E,W,B,B901,B902,B903
exclude = .eggs,.git,.tox,nssm,obj,out,packages,pywin32,tests,swagger_client
ignore = E722,B001,W503,E203