forked from unionai-oss/pandera
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.pylintrc
48 lines (47 loc) · 757 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
37
38
39
40
41
42
43
44
45
46
47
48
[BASIC]
ignore=mypy.py,noxfile.py
good-names=
T,
F,
logger,
df,
fn,
i,
e,
x,
f,
k,
v,
fp,
bar,
_IS_INFERRED,
eq,
ne,
gt,
ge,
lt,
le,
dt,
tz,
TBaseModel,
TArraySchemaBase,
TDataFrameModel,
_DataType
[MESSAGES CONTROL]
disable=
# C0330 conflicts with black: https://github.com/psf/black/issues/48
R0913,
duplicate-code,
too-many-instance-attributes,
no-else-return,
inconsistent-return-statements,
protected-access,
too-many-ancestors,
too-many-lines,
too-few-public-methods,
line-too-long,
ungrouped-imports,
function-redefined,
arguments-differ,
unnecessary-dunder-call,
use-dict-literal