Borjan Tchakaloff | b32bf93 | 2018-10-31 21:20:20 +0100 | [diff] [blame] | 1 | [MASTER] |
| 2 | |
| 3 | # Use multiple processes to speed up Pylint. Specifying 0 will auto-detect the |
| 4 | # number of processors available to use. |
| 5 | jobs=0 |
| 6 | |
| 7 | |
| 8 | [REPORTS] |
| 9 | |
| 10 | # Set the output format. Available formats are text, parseable, colorized, json |
| 11 | # and msvs (visual studio). You can also give a reporter class, e.g. |
| 12 | # mypackage.mymodule.MyReporterClass. |
| 13 | output-format=colorized |
| 14 | |
| 15 | |
| 16 | [FORMAT] |
| 17 | |
| 18 | # Maximum number of characters on a single line. |
Karsten Tausche | 3995ae8 | 2023-02-07 10:28:29 +0100 | [diff] [blame^] | 19 | max-line-length=100 |
Borjan Tchakaloff | b32bf93 | 2018-10-31 21:20:20 +0100 | [diff] [blame] | 20 | |
Karsten Tausche | c79cb04 | 2019-01-22 18:01:14 +0100 | [diff] [blame] | 21 | [BASIC] |
| 22 | good-names= |
| 23 | e, # Allow: `except EType as e:` short variable name |