-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpylintrc
28 lines (22 loc) · 862 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
[MESSAGES CONTROL]
# 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).
# Disable:
# - warnings about function/variable/etc names,
# - warnings about missing docstrings :P
# - error when (incorrectly) guessing what type a variable is
# - warning about "too many instance attributes" in a class
disable=C0103,C0111,E1103,R0902
[REPORTS]
# Include message's id in output
include-ids=yes
# Tells whether to display a full report or only the messages
reports=no
[FORMAT]
# Maximum number of characters on a single line.
max-line-length=100
# String used as indentation unit. This is usually " " (4 spaces) or "\t" (1
# tab).
indent-string=' '