-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.cfg
49 lines (41 loc) · 1.01 KB
/
setup.cfg
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
[flake8]
exclude = .git,.github,.pytest_cache,.venv,dist
import-order-style = cryptography
application-import-names = knowit
max-line-length = 120
ignore =
# D100 Missing docstring in public module
D100
# D103 Missing docstring in public function
D103
# I201 Missing newline between import groups
I201
per-file-ignores =
__init__.py:
# D104 Missing docstring in public package
D104
# F401 Imported but unused
F401
knowit/__init__.py:
# E402 Module level import not at top of file
E402
# F401 Imported but unused
F401
knowit/api.py:
# N818 error suffix in exception names
N818
[mypy]
[mypy-pint.*]
ignore_missing_imports = True
[mypy-babelfish.*]
ignore_missing_imports = True
[mypy-enzyme.*]
ignore_missing_imports = True
[mypy-pkg_resources.*]
ignore_missing_imports = True
[mypy-pymediainfo.*]
ignore_missing_imports = True
[mypy-trakit.*]
ignore_missing_imports = True
[mypy-yaml.*]
ignore_missing_imports = True