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
39
40
|
# .pylintrc - Configuration for Pylint
#
# Copyright (C) 2025 Luke T. Shumaker <lukeshu@lukeshu.com>
# SPDX-License-Identifier: AGPL-3.0-or-later
[MAIN]
analyse-fallback-blocks=yes
enable-all-extensions=yes
fail-on=all
#init-hook='sys.path.insert(0, os.path.normpath(os.path.join(__file__, "..")))'
[MESSAGES CONTROL]
disable=missing-module-docstring,
missing-class-docstring,
missing-function-docstring,
fixme,
line-too-long,
unused-argument,
too-few-public-methods,
invalid-name,
too-many-lines,
too-many-locals,
too-many-statements,
too-many-nested-blocks,
too-many-branches,
too-many-instance-attributes,
too-many-arguments,
too-many-positional-arguments,
too-many-return-statements,
global-statement,
import-outside-toplevel
[REPORTS]
reports=no
score=no
[VARIABLES]
allow-global-unused-variables=no
init-import=yes
|