clone of my dotfiles.ssp.sh
1[MESSAGES CONTROL]
2
3# Enable the message, report, category or checker with the given id(s). You can
4# either give multiple identifier separated by comma (,) or put this option
5# multiple time.
6#enable=
7
8# Disable the message, report, category or checker with the given id(s). You
9# can either give multiple identifier separated by comma (,) or put this option
10# multiple time (only on the command line, not in the configuration file where
11# it should appear only once).#
12#
13# R - refactoring related checks => snake_case
14# C - convention related checks
15# W0511 disable TODO warning
16# W1201, W1202 disable log format warning. False positives (I think)
17# W0231 disable super-init-not-called - pylint doesn't understand six.with_metaclass(ABCMeta)
18# W0707 disable raise-missing-from which we cant use because py2 back compat
19
20disable=R,duplicate-code,W0231,W0511,W1201,W1202,W0707,no-init
21
22# See: https://github.com/getsentry/responses/issues/74
23[TYPECHECK]
24ignored-classes=responses
25signature-mutators=solid,composite_solid,lambda_solid,configured
26
27[MASTER]
28ignore=snapshots
29load-plugins=dagster.utils.linter
30
31# See: https://stackoverflow.com/questions/40163106/cannot-find-col-function-in-pyspark
32generated-members=pyspark.*
33ignored-modules=pyspark.sql.functions