File: pylintrc

package info (click to toggle)
git-revise 0.7.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 344 kB
  • sloc: python: 2,505; makefile: 16
file content (16 lines) | stat: -rw-r--r-- 367 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
[MESSAGES CONTROL]

disable=
    bad-continuation,
    missing-docstring,
    too-many-arguments,
    too-many-branches,
    too-many-return-statements,
    too-few-public-methods,
    too-many-instance-attributes,
    cyclic-import,
    fixme,

    # Currently broken analyses which are also handled (better) by mypy
    class-variable-slots-conflict,
    no-member