forked from materialyzeai/flamyngo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
33 lines (27 loc) · 675 Bytes
/
Copy pathsetup.cfg
File metadata and controls
33 lines (27 loc) · 675 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[aliases]
release = register sdist bdist_wheel upload
[bdist_wheel]
universal = 1
[isort]
profile=black
[pycodestyle]
count = True
ignore = E121,E123,E126,E133,E226,E241,E242,E704,W503,W504,W505,E741,W605,W293,W291,W292,E203,E231
max-line-length = 120
statistics = True
exclude=docs_rst/*.py
[flake8]
exclude = .git,__pycache__,docs_rst/conf.py,tests
# max-complexity = 10
extend-ignore = E741,W291,W293,E501,E231,E203,F401,E402
max-line-length = 120
per-file-ignores =
# F401: imported but unused
__init__.py: F401
[pydocstyle]
ignore = D105,D2,D4
match-dir=(?!(tests)).*
[mypy]
ignore_missing_imports = True
namespace_packages = True
explicit_package_bases = True