-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathsetup.cfg
More file actions
31 lines (25 loc) · 624 Bytes
/
setup.cfg
File metadata and controls
31 lines (25 loc) · 624 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
[mypy]
plugins = pfun.mypy_plugin
warn_redundant_casts = True
warn_unused_ignores = True
#disallow_untyped_defs = True
#disallow_incomplete_defs = True
#check_untyped_defs = True
[flake8]
ignore = E741,W504,F811,E731,F821,W503,E201,E128,E202
exclude = docs/*
[yapf]
based_on_style = pep8
dedent_closing_brackets = true
split_all_top_level_comma_separated_values = true
split_before_dot = false
join_multiple_lines = false
column_limit = 79
[mypy-pytest]
ignore_missing_imports = True
[mypy-asyncpg]
ignore_missing_imports = True
[mypy-dill]
ignore_missing_imports = True
[mypy-aiohttp.*]
ignore_missing_imports = True