summaryrefslogtreecommitdiff
path: root/.pylintrc
blob: 04d689ffd5f2462f0b49948ec426a8759ca2b9fd (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
# vim: ft=dosini fileencoding=utf-8:

[MASTER]
ignore=resources.py
extension-pkg-whitelist=PyQt5,sip
load-plugins=qute_pylint.config,
             qute_pylint.modeline,
             qute_pylint.openencoding,
             qute_pylint.settrace,
             pylint.extensions.bad_builtin,
             pylint.extensions.docstyle
persistent=n

[MESSAGES CONTROL]
enable=all
disable=no-self-use,
        fixme,
        global-statement,
        locally-disabled,
        locally-enabled,
        too-many-ancestors,
        too-few-public-methods,
        too-many-public-methods,
        cyclic-import,
        bad-continuation,
        too-many-instance-attributes,
        blacklisted-name,
        too-many-lines,
        logging-format-interpolation,
        broad-except,
        bare-except,
        eval-used,
        ungrouped-imports,
        suppressed-message,
        too-many-return-statements,
        duplicate-code,
        wrong-import-position,
        no-else-return

[BASIC]
function-rgx=[a-z_][a-z0-9_]{2,50}$
const-rgx=[A-Za-z_][A-Za-z0-9_]{0,30}$
method-rgx=[a-z_][A-Za-z0-9_]{1,50}$
attr-rgx=[a-z_][a-z0-9_]{0,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=79
ignore-long-lines=(<?https?://|^# Copyright 201\d)
expected-line-ending-format=LF

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

[DESIGN]
max-args=10

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

[TYPECHECK]
ignored-modules=PyQt5,PyQt5.QtWebKit

[IMPORTS]
# WORKAROUND
# For some reason, pylint doesn't know about some Python 3 modules on
# AppVeyor...
known-standard-library=faulthandler,http,enum,tokenize,posixpath,importlib,types