mirror of
https://github.com/ItsDrike/dotfiles.git
synced 2024-11-10 10:39:41 +00:00
12 lines
299 B
Plaintext
12 lines
299 B
Plaintext
|
[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
|