-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.pylintrc
More file actions
41 lines (39 loc) · 916 Bytes
/
Copy path.pylintrc
File metadata and controls
41 lines (39 loc) · 916 Bytes
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
41
[MASTER]
extension-pkg-whitelist=PyQt6,PyQt5
ignore = venv,ankidata,vendor,forms,user_files
[REPORTS]
output-format=colorized
[MESSAGES CONTROL]
disable=
line-too-long,
too-many-lines,
missing-function-docstring,
missing-module-docstring,
missing-class-docstring,
import-outside-toplevel,
wrong-import-position,
wrong-import-order,
fixme,
unused-wildcard-import,
attribute-defined-outside-init,
redefined-builtin,
wildcard-import,
broad-except,
bare-except,
unused-argument,
unused-variable,
redefined-outer-name,
global-statement,
protected-access,
arguments-renamed,
consider-using-f-string,
invalid-name,
; Temporarily disabled until I get the time to do a big refactoring
duplicate-code,
too-many-branches,
too-many-statements,
too-many-arguments,
too-many-instance-attributes,
too-many-locals,
consider-using-with,
too-many-boolean-expressions,