-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.cfg
More file actions
44 lines (40 loc) · 1005 Bytes
/
Copy pathsetup.cfg
File metadata and controls
44 lines (40 loc) · 1005 Bytes
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
[metadata]
name = LongCapital
description = LongCapital
long_description = file: README.md
long_description_content_type = text/markdown
author = Chenglong Chen
[flake8]
ignore =
# line too long (79), we use black (88)
E501,
# whitespace before ':'
E203,
# line break before binary operator
W503,
# imports at the top
E402,
exclude =
# No need to traverse our git directory
.git,
# There's no value in checking cache directories
__pycache__,
# The conf file is mostly autogenerated, ignore it
docs/conf.py,
# This contains our built documentation
build,
# This contains builds of chatbot_experiment that we don't want to check
dist
max-complexity = 10
docstring-convention = google
[mypy]
follow_imports = silent
show_error_codes = True
warn_unreachable = True
warn_unused_ignores = True
warn_unused_configs = True
warn_redundant_casts = True
[mypy-tqdm]
ignore_missing_imports = True
[mypy-ruamel]
ignore_missing_imports = True