File: pylintrc

package info (click to toggle)
python-scrapy 2.4.1-2%2Bdeb11u1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 4,748 kB
  • sloc: python: 32,888; xml: 199; makefile: 90; sh: 7
file content (115 lines) | stat: -rw-r--r-- 3,328 bytes parent folder | download
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
[MASTER]
persistent=no
jobs=1  # >1 hides results

[MESSAGES CONTROL]
disable=abstract-method,
        anomalous-backslash-in-string,
        arguments-differ,
        attribute-defined-outside-init,
        bad-classmethod-argument,
        bad-continuation,
        bad-indentation,
        bad-mcs-classmethod-argument,
        bad-super-call,
        bad-whitespace,
        bare-except,
        blacklisted-name,
        broad-except,
        c-extension-no-member,
        catching-non-exception,
        cell-var-from-loop,
        comparison-with-callable,
        consider-iterating-dictionary,
        consider-using-in,
        consider-using-set-comprehension,
        consider-using-sys-exit,
        cyclic-import,
        dangerous-default-value,
        deprecated-method,
        deprecated-module,
        duplicate-code,  # https://github.com/PyCQA/pylint/issues/214
        eval-used,
        expression-not-assigned,
        fixme,
        function-redefined,
        global-statement,
        import-error,
        import-outside-toplevel,
        import-self,
        inconsistent-return-statements,
        inherit-non-class,
        invalid-name,
        invalid-overridden-method,
        isinstance-second-argument-not-valid-type,
        keyword-arg-before-vararg,
        line-too-long,
        logging-format-interpolation,
        logging-not-lazy,
        lost-exception,
        method-hidden,
        misplaced-comparison-constant,
        missing-docstring,
        missing-final-newline,
        multiple-imports,
        multiple-statements,
        no-else-continue,
        no-else-raise,
        no-else-return,
        no-init,
        no-member,
        no-method-argument,
        no-name-in-module,
        no-self-argument,
        no-self-use,
        no-value-for-parameter,
        not-an-iterable,
        not-callable,
        pointless-statement,
        pointless-string-statement,
        protected-access,
        raise-missing-from,
        redefined-argument-from-local,
        redefined-builtin,
        redefined-outer-name,
        reimported,
        signature-differs,
        singleton-comparison,
        super-init-not-called,
        super-with-arguments,
        superfluous-parens,
        too-few-public-methods,
        too-many-ancestors,
        too-many-arguments,
        too-many-branches,
        too-many-format-args,
        too-many-function-args,
        too-many-instance-attributes,
        too-many-lines,
        too-many-locals,
        too-many-public-methods,
        too-many-return-statements,
        trailing-newlines,
        trailing-whitespace,
        unbalanced-tuple-unpacking,
        undefined-variable,
        undefined-loop-variable,
        unexpected-special-method-signature,
        ungrouped-imports,
        unidiomatic-typecheck,
        unnecessary-comprehension,
        unnecessary-lambda,
        unnecessary-pass,
        unreachable,
        unsubscriptable-object,
        unused-argument,
        unused-import,
        unused-variable,
        unused-wildcard-import,
        used-before-assignment,
        useless-object-inheritance,  # Required for Python 2 support
        useless-return,
        useless-super-delegation,
        wildcard-import,
        wrong-import-order,
        wrong-import-position