clone of my dotfiles.ssp.sh
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

move pylint file

sspaeti 5153f733 7259308f

+33
+33
python/pylintrc
··· 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 + 20 + disable=R,duplicate-code,W0231,W0511,W1201,W1202,W0707,no-init 21 + 22 + # See: https://github.com/getsentry/responses/issues/74 23 + [TYPECHECK] 24 + ignored-classes=responses 25 + signature-mutators=solid,composite_solid,lambda_solid,configured 26 + 27 + [MASTER] 28 + ignore=snapshots 29 + load-plugins=dagster.utils.linter 30 + 31 + # See: https://stackoverflow.com/questions/40163106/cannot-find-col-function-in-pyspark 32 + generated-members=pyspark.* 33 + ignored-modules=pyspark.sql.functions