|
| 1 | +[MASTER] |
| 2 | +# Specify a score threshold to be exceeded before program exits with error. |
| 3 | +fail-under=10.0 |
| 4 | + |
| 5 | +# Disable the message, report, category or checker with the given id(s). You |
| 6 | +# can either give multiple identifiers separated by comma (,) or put this |
| 7 | +# option multiple times (only on the command line, not in the configuration |
| 8 | +# file where it should appear only once). You can also use "--disable=all" to |
| 9 | +# disable everything first and then reenable specific checks. For example, if |
| 10 | +# you want to run only the similarities checker, you can use "--disable=all |
| 11 | +# --enable=similarities". If you want to run only the classes checker, but have |
| 12 | +# no Warning level messages displayed, use "--disable=all --enable=classes |
| 13 | +# --disable=W". |
| 14 | +# disable=too-few-public-methods |
| 15 | + |
| 16 | +# Files or directories to be skipped. They should be base names, not paths. |
| 17 | +# ignore=schema_common.graphql, schema_api.graphql, schema_admin.graphql |
| 18 | + |
| 19 | +# List of plugins (as comma separated values of python module names) to load, |
| 20 | +# usually to register additional checkers. |
| 21 | +# load-plugins= |
| 22 | + |
| 23 | +# Use multiple processes to speed up Pylint. Specifying 0 will auto-detect the |
| 24 | +# number of processors available to use. |
| 25 | +jobs=0 |
| 26 | + |
| 27 | +# When enabled, pylint would attempt to guess common misconfiguration and emit |
| 28 | +# user-friendly hints instead of false-positive error messages. |
| 29 | +suggestion-mode=yes |
| 30 | + |
| 31 | +[MESSAGES CONTROL] |
| 32 | +disable=missing-docstring |
| 33 | + |
| 34 | +[FORMAT] |
| 35 | +max-line-length=120 |
| 36 | + |
| 37 | +[tool.pylint.SIMILARITIES] |
| 38 | +min-similarity-lines=5 |
| 39 | + |
| 40 | +# Good variable names which should always be accepted, separated by a comma |
| 41 | +good-names=e,i,j,k,p,t,v,fn,db,tz |
| 42 | + |
| 43 | +# [TYPECHECK] |
| 44 | +# ignored-classes=scoped_session |
| 45 | + |
| 46 | +[SIMILARITIES] |
| 47 | +# Signatures are removed from the similarity computation |
| 48 | +ignore-signatures=yes |
| 49 | + |
| 50 | +[LOGGING] |
| 51 | +logging-format-style=old |
| 52 | + |
| 53 | +# Logging modules to check that the string format arguments are in logging |
| 54 | +# function parameter format. |
| 55 | +logging-modules=logging |
| 56 | + |
| 57 | +[REPORTS] |
| 58 | +output-format=colorized |
0 commit comments