forked from SkyTemple/skytemple-files
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpylintrc
43 lines (36 loc) · 856 Bytes
/
pylintrc
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
[MAIN]
ignore-patterns=.*?(_test|_mock).py
jobs=0
suggestion-mode=yes
disable=
# This one seems to be broken with make_user_err.
raising-non-exception,
# Not required:
unused-wildcard-import,
typevar-name-incorrect-variance,
too-few-public-methods,
import-outside-toplevel,
# These clash with black:
wrong-import-order,
# BLOCKED by
# - https://github.com/PyCQA/pylint/issues/6696
# - https://github.com/PyCQA/astroid/pull/1301
# Covered (better) by mypy:
invalid-sequence-index,
invalid-unary-operand-type,
no-member,
fail-under=7.5
fail-on=
deprecated-method-st,
E,
F,
[FORMAT]
max-line-length=120
[DESIGN]
max-args=10
[TYPECHECK]
# see https://github.com/PyCQA/pylint/issues/4987
ignored-modules=skytemple_rust
generated-members=skytemple_rust.*
[REPORTS]
reports=yes