mirror of
https://github.com/Infinidat/infi.clickhouse_orm.git
synced 2025-08-02 19:20:14 +03:00
Hack: add setup.cfg to cover for 'import *'
This commit is contained in:
parent
a3b822899f
commit
4484517616
19
tests/setup.cfg
Normal file
19
tests/setup.cfg
Normal file
|
@ -0,0 +1,19 @@
|
|||
[flake8]
|
||||
max-line-length = 120
|
||||
select =
|
||||
# pycodestyle
|
||||
E, W
|
||||
# pyflakes
|
||||
F
|
||||
# flake8-bugbear
|
||||
B, B9
|
||||
# pydocstyle
|
||||
D
|
||||
# isort
|
||||
I
|
||||
ignore =
|
||||
E203 # Whitespace after ':'
|
||||
W503 # Operator after new line
|
||||
B950 # We use E501
|
||||
B008 # Using callable in function defintion, required for FastAPI
|
||||
F405, F403 # Since * imports cause havok
|
Loading…
Reference in New Issue
Block a user