forked from broadinstitute/viral-ngs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pylintrc
29 lines (23 loc) · 861 Bytes
/
.pylintrc
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
[DESIGN]
# the default of five is a bit too restrictive
max-args=12
# some sci computations require many local variables
max-locals=20
[MESSAGES CONTROL]
# Enable the message, report, category or checker with the given id(s). You can
# either give multiple identifier separated by comma (,) or put this option
# multiple time.
# enable=
# Disable the message, report, category or checker with the given id(s). You
# can either give multiple identifier separated by comma (,) or put this option
# multiple time (only on the command line, not in the configuration file where
# it should appear only once).
# module has too many lines
disable=C0302
[FORMAT]
# Maximum number of characters on a single line.
max-line-length=120
[TYPECHECK]
# to prevent (incorrect) no-member errors from cython modules
ignored-modules=cython,pysam
ignored-classes=cython,pysam