summaryrefslogtreecommitdiffstats
path: root/pylintrc
blob: a9fbc4a2e0ae3b943e53413e3256188f74d9bc73 (plain)
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
[MESSAGES CONTROL]
disable=
    invalid-name,
    logging-fstring-interpolation,
    fixme

[BASIC]
good-names=runCmds, i, y, t, c, x, e, fd, ip, v

[DESIGN]
max-statements=61
max-returns=8
max-locals=23

[FORMAT]
max-line-length=165
max-module-lines=1700

[SIMILARITIES]
# making similarity lines limit a bit higher than default 4
min-similarity-lines=10

[MAIN]
load-plugins=pylint_pydantic
extension-pkg-whitelist=pydantic