forked from subquery/cosmos-subql-starter
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathsetup.cfg
More file actions
38 lines (30 loc) · 779 Bytes
/
setup.cfg
File metadata and controls
38 lines (30 loc) · 779 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
34
35
36
37
38
[flake8]
paths=src, tests
copyright-check = True
select = B,C,D,E,F,I,W,
exclude=.md
ignore = D403, E501, W503, F403, E203
docstring_style=sphinx
strictness=short
# ignored for now. Should fix and relax over time:
# D403: First word of the first line should be properly capitalized in docstrings
# ignore as too restrictive for our needs:
# E501: https://www.flake8rules.com/rules/E501.html (Line too long)
# W503: https://www.flake8rules.com/rules/W503.html (Line break)
[mypy]
python_version = 3.9
strict_optional = True
exclude = vulture_whitelist.py
namespace_packages = False
[mypy-google.*]
ignore_missing_imports = True
[isort]
profile = black
skip = protos
[check-manifest]
ignore =
Makefile
.pylintrc
.coveragerc
install_packages.py
setup.py