File: .pylintrc

package info (click to toggle)
python-duet 0.2.9-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 236 kB
  • sloc: python: 1,423; sh: 30; makefile: 7
file content (40 lines) | stat: -rw-r--r-- 945 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
[config]
disable=all
max-line-length=100
enable=
    anomalous-backslash-in-string,
    bad-option-value,
    bad-reversed-sequence,
    bad-super-call,
    continue-in-finally,
    dangerous-default-value,
    duplicate-argument-name,
    expression-not-assigned,
    f-string-without-interpolation,
    function-redefined,
    init-is-generator,
    line-too-long,
    mixed-indentation,
    nonexistent-operator,
    not-in-loop,
    no-value-for-parameter
    pointless-statement,
    pointless-string-statement,
    redefined-builtin,
    relative-import,
    return-arg-in-generator,
    return-in-init,
    return-outside-function,
    singleton-comparison,
    syntax-error,
    undefined-variable,
    unnecessary-pass,
    unreachable,
    unrecognized-inline-option,
    unused-import,
    unused-variable,
    unused-wildcard-import,
    wildcard-import,
    wrong-import-order,
    wrong-import-position,
    yield-outside-function