summaryrefslogtreecommitdiff
path: root/.pylintrc
blob: 3eb9337b1078518401d0877907b9feaeffcd1ba7 (plain)
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# vim: ft=dosini fileencoding=utf-8:

[MASTER]
ignore=resources.py
extension-pkg-whitelist=PyQt6,sip
load-plugins=qute_pylint.config,
             qute_pylint.modeline,
             qute_pylint.openencoding,
             pylint.extensions.docstyle,
             pylint.extensions.emptystring,
             pylint.extensions.broad_try_clause,
             pylint.extensions.overlapping_exceptions,
persistent=n

[broad_try_clause]
max-try-statements=7

[MESSAGES CONTROL]
enable=all
disable=locally-disabled,
        locally-enabled,
        suppressed-message,
        fixme,
        no-self-use,
        cyclic-import,
        blacklisted-name,
        logging-format-interpolation,
        logging-not-lazy,
        broad-except,
        bare-except,
        eval-used,
        exec-used,
        global-statement,
        wrong-import-position,
        duplicate-code,
        no-else-return,
        no-else-continue,
        too-many-ancestors,
        too-many-public-methods,
        too-many-instance-attributes,
        too-many-lines,
        too-many-return-statements,
        too-many-boolean-expressions,
        too-many-locals,
        too-many-branches,
        too-many-statements,
        too-few-public-methods,
        import-outside-toplevel,
        bad-continuation  # This lint disagrees with Black

[BASIC]
function-rgx=[a-z_][a-z0-9_]{2,50}$
const-rgx=[A-Za-z_][A-Za-z0-9_]{0,50}$
method-rgx=[a-z_][A-Za-z0-9_]{1,50}$
attr-rgx=[A-Za-z_][A-Za-z0-9_]{0,30}$
class-attribute-rgx=([A-Za-z_][A-Za-z0-9_]{1,30}|(__.*__))$
argument-rgx=[a-z_][a-z0-9_]{0,30}$
variable-rgx=[a-z_][a-z0-9_]{0,30}$
docstring-min-length=3
no-docstring-rgx=(^_|^main$)

[FORMAT]
max-line-length=88
ignore-long-lines=(<?https?://|file://|^# Copyright 201\d|link:)
expected-line-ending-format=LF

[VARIABLES]
dummy-variables-rgx=_.*

[DESIGN]
max-args=10

[CLASSES]
valid-metaclass-classmethod-first-arg=cls

[TYPECHECK]
ignored-modules=PyQt6,PyQt6.QtWebKit
ignored-classes=DummyBox,__cause__

[IMPORTS]
known-third-party=sip