mirror of
https://github.com/ItsDrike/dotfiles.git
synced 2024-11-10 02:39:40 +00:00
12 lines
299 B
INI
12 lines
299 B
INI
[flake8]
|
|
max-line-length=119
|
|
extend-ignore=E203
|
|
extend-select=B902,B904
|
|
exclude=.venv,.git,.cache
|
|
ignore=
|
|
ANN002, # *args annotation
|
|
ANN003, # **kwargs annotation
|
|
ANN101, # self param annotation
|
|
ANN102, # cls param annotation
|
|
ANN204, # return type annotation for special methods
|