| [MASTER] |
| |
| # Use multiple processes to speed up Pylint. Specifying 0 will auto-detect the |
| # number of processors available to use. |
| jobs=0 |
| |
| |
| [REPORTS] |
| |
| # Set the output format. Available formats are text, parseable, colorized, json |
| # and msvs (visual studio). You can also give a reporter class, e.g. |
| # mypackage.mymodule.MyReporterClass. |
| output-format=colorized |
| |
| |
| [FORMAT] |
| |
| # Maximum number of characters on a single line. |
| max-line-length=80 |
| |
| # Disable C0330 as there are currently some false positives: |
| # https://github.com/PyCQA/pylint/issues/289 |
| disable=C0330 |
| |
| |
| [BASIC] |
| good-names= |
| e, # Allow: `except EType as e:` short variable name |