-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpylintrc
36 lines (32 loc) · 867 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
30
31
32
33
34
35
36
[MESSAGES CONTROL]
# See:
# http://docs.pylint.org/features.html
#
disable=
duplicate-code,
fixme,
line-too-long,
too-few-public-methods,
too-many-instance-attributes,
wrong-import-order,
[REPORTS]
# Set the output format. Available formats are text, parseable, colorized, msvs
# (visual studio) and html. You can also give a reporter class, eg
# mypackage.mymodule.MyReporterClass.
output-format=colorized
[BASIC]
# Good variable names which should always be accepted, separated by a comma.
good-names=
_,
i,
id,
j,
k,
tb,
# Regular expression which should only match function or class names that do
# not require a docstring.
no-docstring-rgx=__.*__|_.*|test_.*
[VARIABLES]
# A regular expression matching the name of dummy variables (i.e. expectedly
# not used).
dummy-variables-rgx=(_|_[a-z][a-z0-9_]{2,30})$