forked from mystor/git-revise
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpylintrc
33 lines (28 loc) · 745 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
[MASTER]
# Make sure things like "import gitrevise.odb" are resolved to the source
# when running pylint from the command line or IDE.
init-hook=
import os, sys, pylint.config as plc
sys.path.append(os.path.dirname(plc.PYLINTRC))
[MESSAGES CONTROL]
disable=
missing-docstring,
too-many-arguments,
too-many-branches,
too-many-return-statements,
too-few-public-methods,
too-many-instance-attributes,
cyclic-import,
fixme,
# Currently broken analyses which are also handled (better) by mypy
class-variable-slots-conflict,
no-member
good-names=
# "Exception as e" is perfectly fine.
e,
# "with open(…) as f" is idiomatic.
f,
# Other contextually-unambiguous names.
fn,
repo,
ed