forked from ethyca/fidesops
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
98 lines (87 loc) · 1.83 KB
/
pyproject.toml
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
[build-system]
requires = ["setuptools", "wheel", "versioneer-518"] # PEP 508 specifications.
######
# MyPy
######
# [tool.mypy] Waiting for new version of Mypy
# warn_unused_configs = true
# ignore_missing_imports = true
# pretty = true
#######
# Black
#######
[tool.black]
py39 = true
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
# The following are specific to Black, you probably don't want those.
| blib2to3
| tests/data
)/
'''
#######
# isort
#######
[tool.isort]
profile = "black"
line_length = 88
src_paths = ["src", "tests"]
########
# Pylint
########
[tool.pylint.messages_control]
disable=[
"bad-option-value",
"broad-except",
"dangerous-default-value",
"duplicate-code",
"fixme",
"import-error",
"import-outside-toplevel",
"invalid-name",
"line-too-long",
"logging-fstring-interpolation",
"missing-class-docstring",
"missing-function-docstring",
"missing-module-docstring",
"no-self-argument",
"no-self-use",
"raise-missing-from",
"too-few-public-methods",
"too-many-ancestors",
"too-many-arguments",
"unnecessary-comprehension",
"unsubscriptable-object", # Otherwise throws errors on certain Type annotations
"unused-argument",
]
[tool.pylint.reports]
reports="no"
output-format="colorized"
[tool.pylint.format]
max-line-length="88"
[tool.pylint.basic]
good-names="_,i,setUp,tearDown,maxDiff,default_app_config"
[tool.pylint.ignore]
ignore="migrations,tests"
[tool.pylint.whitelist]
extension-pkg-whitelist='pydantic'
########
# Pytest
########
[tool.pytest.ini_options]
testpaths="tests"
log_level = "INFO"
addopts = ["--cov-report=term-missing",
"-vv",
"--no-cov-on-fail",
"--disable-pytest-warnings"]