mirror of
https://github.com/ItsDrike/dotfiles.git
synced 2024-11-10 02:39:40 +00:00
20 lines
392 B
INI
20 lines
392 B
INI
[flake8]
|
|
max_line_length=150
|
|
import-order-style=pycharm
|
|
application_import_names=src
|
|
exclude=
|
|
.venv/**,
|
|
.git/**
|
|
ignore=
|
|
# Ignore missing return type annotations for special methods
|
|
ANN204
|
|
# Ignore missing type annotations
|
|
ANN101 # Init
|
|
ANN102 # cls
|
|
ANN002, # *Args
|
|
ANN003, # **Kwargs
|
|
# Allow lambdas
|
|
E731
|
|
# Allow markdown inline HTML
|
|
MD033
|