This repository has been archived by the owner on Nov 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpyproject.toml
129 lines (116 loc) · 2.32 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
[build-system]
requires = ["setuptools", "wheel", "versioneer-518"] # PEP 508 specifications.
######
# MyPy
######
[tool.mypy]
exclude = ["fidesops.migrations.*"]
warn_unused_configs = true
pretty = true
plugins = ["pydantic.mypy", "sqlmypy"]
disallow_untyped_defs = true
show_error_codes = true
[[tool.mypy.overrides]]
module = ["tests.*"]
disallow_untyped_defs = false
[[tool.mypy.overrides]]
module = [
"alembic.*",
"apscheduler.*",
"boto3.*",
"botocore.*",
"bson.*",
"celery.*",
"dask.*",
"fideslang.*",
"fideslib.*",
"fideslog.*",
"jose.*",
"jwt.*",
"multidimensional_urlencode.*",
"pandas.*",
"pydash.*",
"pymongo.*",
"snowflake.*",
"sqlalchemy_utils.*",
"uvicorn.*"
]
ignore_missing_imports = 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"]