first commit
This commit is contained in:
19
.flake8
Normal file
19
.flake8
Normal file
@@ -0,0 +1,19 @@
|
||||
[flake8]
|
||||
# flake8配置文件
|
||||
max-line-length = 100
|
||||
exclude =
|
||||
.git,
|
||||
__pycache__,
|
||||
.venv,
|
||||
venv,
|
||||
migrations,
|
||||
build,
|
||||
dist,
|
||||
*.egg-info
|
||||
ignore =
|
||||
E203, # whitespace before ':'
|
||||
E501, # line too long (handled by black)
|
||||
W503, # line break before binary operator
|
||||
per-file-ignores =
|
||||
__init__.py:F401 # 允许未使用的导入
|
||||
|
||||
Reference in New Issue
Block a user