forked from skarndev/umodel_tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
32 lines (27 loc) · 690 Bytes
/
setup.cfg
File metadata and controls
32 lines (27 loc) · 690 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
[pycodestyle]
ignore = E731, W503
max-line-length = 120
statistics = True
[pylint.FORMAT]
max-line-length = 120
[pylint]
disable = missing-docstring,
invalid-name,
fixme,
too-few-public-methods,
unnecessary-lambda-assignment,
too-many-arguments,
too-many-locals,
too-many-branches,
too-many-statements,
too-many-nested-blocks,
too-many-instance-attributes,
too-many-return-statements,
too-many-boolean-expressions,
arguments-renamed,
duplicate-code
ignored-modules=bpy
[mypy]
exclude = umodel_tools/third_party
[mypy-bpy.*]
ignore_errors = True