File: pylintrc

package info (click to toggle)
python-parsel 1.10.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 472 kB
  • sloc: python: 2,613; makefile: 159; xml: 15
file content (31 lines) | stat: -rw-r--r-- 769 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
[MASTER]
ignore=typing
persistent=no

[MESSAGES CONTROL]
disable=c-extension-no-member,
        fixme,
        import-error,
        import-outside-toplevel,
        invalid-name,
        line-too-long,
        missing-class-docstring,
        missing-function-docstring,
        missing-module-docstring,
        no-else-return,
        no-member,
        not-callable,
        parse-error,
        protected-access,
        raise-missing-from,
        redefined-builtin,
        too-few-public-methods,
        too-many-arguments,
        too-many-lines,
        too-many-positional-arguments,
        too-many-public-methods,
        unidiomatic-typecheck,
        unused-argument,
        use-a-generator,
        wrong-import-order,
        wrong-import-position,