-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.pylintrc
52 lines (42 loc) · 1.16 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
46
47
48
49
50
51
52
[MASTER]
limit-inference-results=200
persistent=yes
suggestion-mode=yes
init-hook="from pylint.config import find_pylintrc; import os, sys; sys.path.append(os.path.dirname(find_pylintrc()))"
[BASIC]
docstring-min-length=1
good-names=df, X, y, t, EM_t, s_X, u, _, __, ___, i, X_train, X_test, X_val
include-naming-hint=yes
class-naming-style=PascalCase
const-naming-style=UPPER_CASE
argument-naming-style=snake_case
attr-naming-style=snake_case
function-naming-style=snake_case
method-naming-style=snake_case
module-naming-style=snake_case
variable-naming-style=snake_case
[FORMAT]
# Regexp for a line that is allowed to be longer than the limit.
ignore-long-lines=(?x)
(^\s*(import|from)\s
|\#
|(https?|ftp):)
max-args=10
max-line-length=100
max-module-lines=1000
[IMPORTS]
deprecated-modules=optparse,tkinter.tix
known-third-party=enchant
[LOGGING]
# `old` -> %, `new` -> `{}`
logging-format-style=new
logging-modules=logging
[MESSAGES CONTROL]
disable=too-many-locals
[REPORTS]
output-format=colorized
reports=no
score=yes
[TYPECHECK]
ignored-classes=optparse.Values,thread._local,_thread._local
ignored-modules=numpy.random,matplotlib.cm,sklearn.experimental,tensorflow