-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.pylintrc
38 lines (34 loc) · 1 KB
/
.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
37
38
[MASTER]
# Whitelisting pysqlite3 C extension
extension-pkg-allow-list=pysqlite3
[BASIC]
# Common variable names
# a, b: in testing for replica A, replica B
# db: database
# ts: timestamp
# ul: undo-length
good-names=a,b,db,ts,ul
[STRING]
check-quote-consistency=yes
[VARIABLES]
# Tells whether we should check for unused import in __init__ files.
init-import=no
[MESSAGES CONTROL]
disable=consider-merging-isinstance, # this rule is incompatible with mypy
fixme, # allow FIXME doc tags
line-too-long, # we use black for formatting
missing-class-docstring,
missing-function-docstring,
missing-module-docstring,
too-few-public-methods,
too-many-ancestors,
too-many-arguments,
too-many-boolean-expressions,
too-many-branches,
too-many-instance-attributes,
too-many-lines,
too-many-locals,
too-many-nested-blocks,
too-many-public-methods,
too-many-return-statements,
too-many-statements,