blob: ede30c72de98e200fca36e3d4382f0770bc26180 [file] [log] [blame]
Borjan Tchakaloff7a70e552018-08-02 16:26:34 +02001[MASTER]
2
3# Use multiple processes to speed up Pylint. Specifying 0 will auto-detect the
4# number of processors available to use.
5jobs=0
6
7# List of plugins (as comma separated values of python modules names) to load,
8# usually to register additional checkers.
9load-plugins=pylint_django
10
11
12[REPORTS]
13
14# Set the output format. Available formats are text, parseable, colorized, json
15# and msvs (visual studio). You can also give a reporter class, e.g.
16# mypackage.mymodule.MyReporterClass.
17output-format=colorized
18
19
20[FORMAT]
21
22# Maximum number of characters on a single line.
Mitja Nikolaus959e2d62018-08-21 17:51:09 +020023max-line-length=80
Mitja Nikolaus29066782018-08-24 10:39:41 +020024
25# Disable C0330 as there are currently some false positives:
26# https://github.com/PyCQA/pylint/issues/289
27disable=C0330