-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pylintrc
46 lines (43 loc) · 962 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
39
40
41
42
43
44
45
46
[MASTER]
persistent = no
extension-pkg-whitelist=PyQt6
ignore = forms,hooks_gen.py
init-hook = 'import sys; sys.path.append("$env:CODEPATH/Anki/anki-src/qt/", "$env:CODEPATH/Anki/anki-src/pylib/")'
[TYPECHECK]
ignored-modules=win32file,pywintypes,socket,win32pipe,winrt,pyaudio
ignored-classes=
BrowserColumns,
BrowserRow,
SearchNode,
ConfigKey,
OpChanges,
UnburyDeckRequest,
CardAnswer,
QueuedCards,
ChangeNotetypeRequest,
CustomStudyRequest,
Cram,
ScheduleCardsAsNewRequest,
CsvColumn,
CsvMetadata,
[REPORTS]
output-format=colorized
[MESSAGES CONTROL]
disable=C,R,
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-differ,
arguments-renamed,
missing-function-docstring,
missing-module-docstring,
trailing-whitespace,