forked from chanind/frame-semantic-transformer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
42 lines (32 loc) · 758 Bytes
/
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
[flake8]
extend-ignore = E203,E501
exclude = dist,docs
[mypy]
follow_imports = silent
strict_optional = True
warn_redundant_casts = True
warn_unused_ignores = True
disallow_any_generics = True
check_untyped_defs = True
disallow_untyped_defs = True
namespace_packages = True
mypy_path = $MYPY_CONFIG_FILE_DIR/stubs
exclude = dist
[mypy-tests.*]
ignore_missing_imports = True
[mypy-pytest.*]
ignore_missing_imports = True
[mypy-nltk.*]
ignore_missing_imports = True
[mypy-nlpaug.*]
ignore_missing_imports = True
[mypy-flask_cors.*]
ignore_missing_imports = True
[mypy-flask.*]
ignore_missing_imports = True
[mypy-tqdm.*]
ignore_missing_imports = True
[mypy-transformers.*]
ignore_missing_imports = True
[mypy-werkzeug.*]
ignore_missing_imports = True