File: .pylintrc

package info (click to toggle)
python-stone 3.3.9-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,036 kB
  • sloc: python: 22,311; objc: 498; sh: 23; makefile: 11
file content (21 lines) | stat: -rw-r--r-- 478 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[MESSAGES CONTROL]
disable=
    C,
    R,
    fixme,
    locally-disabled,
    protected-access,
    useless-else-on-loop,
    cell-var-from-loop, # https://github.com/PyCQA/pylint/issues/1934
    bad-string-format-type, # bogus errors
    raise-missing-from,
    # errors thrown on github actions not locally
    unused-import,
    wildcard-import,
    bad-option-value,
    attribute-defined-outside-init,
    deprecated-lambda
enable=useless-suppression

[REPORTS]
reports=n