forked from jamulussoftware/jamulus
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.pylintrc
39 lines (28 loc) · 917 Bytes
/
.pylintrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[MAIN]
# Specify a score threshold under which the program will exit with error.
fail-under=10
[BASIC]
# Minimum line length for functions/classes that require docstrings, shorter
# ones are exempt.
docstring-min-length=100
# Good variable names which should always be accepted, separated by a comma.
good-names=s, f, i, j, k, e, _
# Include a hint for the correct naming format with invalid-name.
include-naming-hint=yes
[FORMAT]
# Maximum number of characters on a single line.
# See .editorconfig
max-line-length=99
disable=
# Disable enforcing constants as ALL_CAPS -
# pylint produces too many false positives here
C0103,
# Allow redefining names from outer scope
W0621,
# Assume utf-8 everywhere
W1514,
# Allow classes with any number of public methods
R0903,
# Allow TODOs in code
W0511
output-format=colorized