-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
21 lines (18 loc) · 683 Bytes
/
Copy pathsetup.cfg
File metadata and controls
21 lines (18 loc) · 683 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[yapf]
based_on_style = facebook
coalesce_brackets = True
column_limit = 79
[flake8]
# ANN101: I don't think that's necessary for mypy, but adds boilerplate. TBD
# ANN204: I don't think that's necessary for mypy, but adds boilerplate. TBD
# E203: clashes with the walrus operator
# E231: clashes with the walrus operator
# TYP101: I don't think that's necessary for mypy, but adds boilerplate. TBD
# TYP102: I don't think that's necessary for mypy, but adds boilerplate. TBD
# W504: The rule is conflicting with the autoformatter
ignore = ANN101,ANN204,E203,E231,TYP101,TYP102,W504,T201
inline-quotes = double
[mypy]
plugins = sqlmypy
[mypy-gspread.*]
ignore_missing_imports=True