forked from OCHA-DAP/hdx-ckan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
188 lines (169 loc) · 4.93 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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
[tool.towncrier]
directory = "changes"
package = "ckan"
filename = "CHANGELOG.rst"
title_format = "v.{version} {project_date}"
issue_format = "`#{issue} <https://github.com/ckan/ckan/pull/{issue}>`_"
wrap = true
[[tool.towncrier.type]]
directory = 'migration'
name = 'Migration notes'
showcontent = true
[[tool.towncrier.type]]
directory = 'feature'
name = 'Major features'
showcontent = true
[[tool.towncrier.type]]
directory = 'misc'
name = 'Minor changes'
showcontent = true
[[tool.towncrier.type]]
directory = 'bugfix'
name = 'Bugfixes'
showcontent = true
[[tool.towncrier.type]]
directory = 'removal'
name = 'Removals and deprecations'
showcontent = true
[tool.black]
line-length = 79
preview = true
[tool.pytest.ini_options]
filterwarnings = [
"ignore::sqlalchemy.exc.SADeprecationWarning",
"ignore::sqlalchemy.exc.SAWarning",
"ignore::DeprecationWarning",
"ignore::bs4.GuessedAtParserWarning" # using lxml as default parser
]
markers = [
"ckan_config: patch configuration used by other fixtures via (key, value) pair.",
"ckan_pytest: test case that is explicitely was rewriten from `nose` style"
]
testpaths = ["ckan", "ckanext"]
addopts = "--strict-markers --pdbcls=IPython.terminal.debugger:TerminalPdb -p no:ckan"
[tool.pyright]
pythonVersion = "3.9"
include = ["ckan", "ckanext"]
exclude = [
"**/test*",
"**/migration",
"ckan/lib/create_test_data.py"
]
strict = []
strictParameterNoneValue = true # type must be Optional if default value is None
# Check the meaning of rules here
# https://github.com/microsoft/pyright/blob/main/docs/configuration.md
reportFunctionMemberAccess = true # non-standard member accesses for functions
reportMissingImports = true
reportMissingModuleSource = true
reportMissingTypeStubs = false
reportImportCycles = false
reportUnusedImport = false
reportUnusedClass = true
reportUnusedFunction = true
reportUnusedVariable = true
reportDuplicateImport = true
reportOptionalSubscript = true
reportOptionalMemberAccess = false
reportOptionalCall = true
reportOptionalIterable = false
reportOptionalContextManager = true
reportOptionalOperand = true
# We are using Context in a way that conflicts with this check
reportTypedDictNotRequiredAccess = false
reportConstantRedefinition = true
reportIncompatibleMethodOverride = false
reportIncompatibleVariableOverride = false
reportOverlappingOverload = true
reportUntypedFunctionDecorator = false
reportUnknownParameterType = false
reportUnknownArgumentType = false
reportUnknownLambdaType = false
reportUnknownMemberType = false
reportMissingTypeArgument = false
reportInvalidTypeVarUse = true
reportCallInDefaultInitializer = true
reportUnknownVariableType = false
reportUntypedBaseClass = true
reportUnnecessaryIsInstance = false
reportUnnecessaryCast = false
reportUnnecessaryComparison = false
reportAssertAlwaysTrue = true
reportSelfClsParameterName = true
reportUnusedCallResult = false # allow function calls for side-effect only (like logic.check_acces)
useLibraryCodeForTypes = true
reportGeneralTypeIssues = false
reportPropertyTypeMismatch = true
reportWildcardImportFromLibrary = true
reportUntypedClassDecorator = false # authenticator relies on repoze.who class-decorator
reportUntypedNamedTuple = true
reportPrivateUsage = false # TODO: do not access private members in CKAN's codebase
reportPrivateImportUsage = true
reportInconsistentConstructor = true
reportMissingSuperCall = false
reportUninitializedInstanceVariable = false
reportInvalidStringEscapeSequence = true
reportMissingParameterType = true
reportImplicitStringConcatenation = false
reportUndefinedVariable = true
reportUnboundVariable = true
reportInvalidStubStatement = true
reportIncompleteStub = true
reportUnsupportedDunderAll = true
reportUnusedCoroutine = true
reportUnnecessaryTypeIgnoreComment = false
reportMatchNotExhaustive = true
# HDX Edit
reportArgumentType = false
reportAssignmentType = false
reportAttributeAccessIssue = false
reportInvalidTypeForm = false
reportReturnType = false
# End HDX Edit
[tool.mypy]
plugins = "sqlalchemy.ext.mypy.plugin"
files = "ckan"
exclude = "ckan/(pastertemplates|tests|migration)"
[[tool.mypy.overrides]]
ignore_missing_imports = true
module = [
"babel.*",
"beaker.*",
"blinker.*",
"cookiecutter.*",
"dominate.*",
"feedgen.*",
"flask_babel.*",
"flask_debugtoolbar.*",
"flask_multistatic.*",
"passlib.*",
"pysolr.*",
"pyutilib.*",
"repoze.*",
"rq.*",
"webassets.*",
"zope.*",
]
[tool.ruff]
extend-exclude = [
"./src",
]
# Allow lines to be as long as 120 characters.
line-length = 120
[tool.ruff.lint]
select = [
"E",
"F",
"Q",
"INP001", # Checks for packages that are missing an __init__.py file.
]
extend-ignore = [
"Q003", # avoidable-escaped-quote
"E712", # true-false-comparison (interferes with sqlAlchemy queries)
]
[tool.ruff.lint.flake8-quotes]
inline-quotes = "single"
multiline-quotes = "single"
[tool.ruff.format]
# Prefer single quotes over double quotes
quote-style = "single"