···11+[MESSAGES CONTROL]
22+33+# Enable the message, report, category or checker with the given id(s). You can
44+# either give multiple identifier separated by comma (,) or put this option
55+# multiple time.
66+#enable=
77+88+# Disable the message, report, category or checker with the given id(s). You
99+# can either give multiple identifier separated by comma (,) or put this option
1010+# multiple time (only on the command line, not in the configuration file where
1111+# it should appear only once).#
1212+#
1313+# R - refactoring related checks => snake_case
1414+# C - convention related checks
1515+# W0511 disable TODO warning
1616+# W1201, W1202 disable log format warning. False positives (I think)
1717+# W0231 disable super-init-not-called - pylint doesn't understand six.with_metaclass(ABCMeta)
1818+# W0707 disable raise-missing-from which we cant use because py2 back compat
1919+2020+disable=R,duplicate-code,W0231,W0511,W1201,W1202,W0707,no-init
2121+2222+# See: https://github.com/getsentry/responses/issues/74
2323+[TYPECHECK]
2424+ignored-classes=responses
2525+signature-mutators=solid,composite_solid,lambda_solid,configured
2626+2727+[MASTER]
2828+ignore=snapshots
2929+load-plugins=dagster.utils.linter
3030+3131+# See: https://stackoverflow.com/questions/40163106/cannot-find-col-function-in-pyspark
3232+generated-members=pyspark.*
3333+ignored-modules=pyspark.sql.functions