File: pylintrc

package info (click to toggle)
python-fastjsonschema 2.21.1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 4,780 kB
  • sloc: python: 3,343; makefile: 88; sh: 18
file content (33 lines) | stat: -rw-r--r-- 537 bytes parent folder | download | duplicates (2)
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

[MASTER]
ignore=tests

[MESSAGES CONTROL]
# missing-docstring can be removed after this issue is deployed https://github.com/PyCQA/pylint/issues/1164
disable=duplicate-code,missing-docstring

[REPORTS]
output-format=colorized

[VARIABLES]
init-import=no
dummy-variables-rgx=_|dummy

[TYPECHECK]
ignore-mixin-members=yes

[BASIC]
no-docstring-rgx=_.*
docstring-min-length=3
good-names=_
bad-names=foo,bar,baz,foobar

[DESIGN]
min-public-methods=1
max-public-methods=20

[FORMAT]
max-line-length=120

[MISCELLANEOUS]
notes=FIXME,XXX,TODO