forked from dagster-io/dagster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pylintrc
32 lines (26 loc) · 1.16 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
[MESSAGES CONTROL]
# Enable 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.
#enable=
# 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).#
#
# R - refactoring related checks
# C - convention related checks
# W0511 disable TODO warning
# W1201, W1202 disable log format warning. False positives (I think)
# W0707 disable raise-missing-from which we cant use because py2 back compat
disable=C,R,duplicate-code,W0511,W1201,W1202,W0707,no-init,broad-except,bare-except
# See: https://github.com/getsentry/responses/issues/74
[TYPECHECK]
ignored-classes=responses
signature-mutators=solid,composite_solid,lambda_solid,configured,op,graph
[MASTER]
ignore=snapshots
load-plugins=dagster.utils.linter
# See: https://stackoverflow.com/questions/40163106/cannot-find-col-function-in-pyspark
generated-members=pyspark.*
ignored-modules=pyspark.sql.functions