generated from opensafely/research-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.pylintrc
45 lines (43 loc) · 1.19 KB
/
.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
[MASTER]
ignore=.devcontainer
disable=all
# Enable error (E) and fatal (F) messages, as well as specific warnings related to correctness
enable=E,F,
undefined-variable,
used-before-assignment,
return-in-init,
return-outside-function,
not-in-loop,
duplicate-key,
unreachable,
dangerous-default-value,
arguments-differ,
signature-differs,
abstract-method,
super-init-not-called,
no-member,
not-callable,
assignment-from-no-return,
no-value-for-parameter,
too-many-function-args,
unexpected-keyword-arg,
redundant-keyword-arg,
invalid-sequence-index,
invalid-slice-index,
unsupported-membership-test,
unsubscriptable-object,
unsupported-assignment-operation,
unsupported-delete-operation,
unsupported-iteration-type,
logging-unsupported-format,
logging-format-truncated,
logging-too-many-args,
logging-too-few-args,
bad-format-string,
bad-format-string-key,
bad-str-strip-call,
yield-inside-async-function,
not-async-context-manager,
fatal
[FORMAT]
max-line-length=100