-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathsetup.cfg
More file actions
42 lines (36 loc) · 698 Bytes
/
setup.cfg
File metadata and controls
42 lines (36 loc) · 698 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
[pylint.main]
init-hook='import sys; sys.path.append("./")'
expected-line-ending-format = LF
disable =
line-too-long,
cell-var-from-loop,
multiple-statements,
protected-access,
too-few-public-methods,
too-many-branches,
too-many-instance-attributes,
too-many-locals,
too-many-nested-blocks,
too-many-statements,
unnecessary-lambda,
using-constant-test,
unsubscriptable-object,
invalid-name,
duplicate-code,
super-init-not-called
indent-string='\t'
include-naming-hint=yes
overgeneral-exceptions=Exception
[metadata]
description_file = README.md
[flake8]
max-line-length = 1024
doctests = True
ignore =
E117
E701
W0108
W191
[mypy]
disallow_untyped_defs = True
[pydocstyle]