forked from repo-mirrors/dbt-core
16 lines
289 B
INI
16 lines
289 B
INI
[flake8]
|
|
select =
|
|
E
|
|
W
|
|
F
|
|
ignore =
|
|
W503 # makes Flake8 work like black
|
|
W504
|
|
E203 # makes Flake8 work like black
|
|
E704 # makes Flake8 work like black
|
|
E741
|
|
E501 # long line checking is done in black
|
|
exclude = test/
|
|
per-file-ignores =
|
|
*/__init__.py: F401
|