-
Notifications
You must be signed in to change notification settings - Fork 240
/
setup.cfg
181 lines (161 loc) · 4.03 KB
/
setup.cfg
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
[bdist_wheel]
universal=1
[mypy]
cache_dir = .cache/mypy
check_untyped_defs = False
disallow_any_decorated = False
disallow_any_explicit = False
disallow_any_expr = False
disallow_any_generics = False
disallow_any_unimported = False
disallow_incomplete_defs = True
disallow_subclassing_any = False
disallow_untyped_calls = False
disallow_untyped_decorators = False
disallow_untyped_defs = False
ignore_errors = False
ignore_missing_imports = True
namespace_packages = True
no_implicit_optional = True
python_version = 3.8
strict_optional = True
warn_no_return = True
warn_redundant_casts = True
warn_return_any = False
warn_unreachable = True
warn_unused_ignores = True
[pycodestyle]
count = False
format = default
hang-closing = False
indent-size = 4
max-line-length = 120
statistics = False
[pylint.BASIC]
argument-naming-style=snake_case
attr-naming-style=snake_case
bad-names=
bad-names-rgxs=
class-attribute-naming-style=snake_case
class-const-naming-style=UPPER_CASE
class-naming-style=PascalCase
const-naming-style=UPPER_CASE
docstring-min-length=-1
function-naming-style=snake_case
good-names=_,__,r
good-names-rgxs=
include-naming-hint=no
inlinevar-naming-style=snake_case
method-naming-style=snake_case
module-naming-style=snake_case
name-group=
no-docstring-rgx=^_
property-classes=abc.abstractproperty
variable-naming-style=snake_case
[pylint.CLASSES]
check-protected-access-in-special-methods=no
defining-attr-methods=__init__,__new__,setUp,__post_init__
exclude-protected=
valid-classmethod-first-arg=cls
valid-metaclass-classmethod-first-arg=mcs
[pylint.DESIGN]
max-args=5
max-attributes=7
max-bool-expr=5
max-branches=12
max-locals=15
max-parents=7
max-public-methods=20
max-returns=6
max-statements=50
min-public-methods=2
[pylint.EXCEPTIONS]
overgeneral-exceptions=builtins.BaseException,builtins.Exception
[pylint.FORMAT]
expected-line-ending-format=LF
ignore-long-lines=^\s*(# )?<?https?://\S+>?$
indent-after-paren=4
indent-string=' '
max-line-length=120
max-module-lines=1024
single-line-class-stmt=no
single-line-if-stmt=no
[pylint.IMPORTS]
allow-any-import-level=
allow-wildcard-with-all=no
analyse-fallback-blocks=no
deprecated-modules=
ext-import-graph=
import-graph=
int-import-graph=
known-standard-library=
known-third-party=
preferred-modules=
[pylint.LOGGING]
logging-format-style=new
logging-modules=logging
[pylint.MASTER]
extension-pkg-allow-list=
fail-under=10.0
ignore=
ignore-paths=
ignore-patterns=
jobs=0
limit-inference-results=100
load-plugins=
persistent=yes
suggestion-mode=yes
unsafe-load-any-extension=yes
[pylint.MESSAGES CONTROL]
confidence=
disable=consider-using-f-string,duplicate-code,logging-too-many-args
enable=
[pylint.MISCELLANEOUS]
notes=TODO,FIXME
[pylint.REFACTORING]
max-nested-blocks=5
never-returning-functions=sys.exit,argparse.parse_error
[pylint.REPORTS]
evaluation=10.0 - ((float(5 * error + warning + refactor + convention) / statement) * 10)
output-format=text
reports=no
score=yes
[pylint.SIMILARITIES]
ignore-comments=yes
ignore-docstrings=yes
ignore-imports=yes
min-similarity-lines=6
[pylint.SPELLING]
max-spelling-suggestions=4
spelling-dict=
spelling-ignore-comment-directives=fmt: on,fmt: off,noqa:,noqa,nosec,isort:skip,mypy:
spelling-ignore-words=
spelling-private-dict-file=
spelling-store-unknown-words=no
[pylint.STRING]
check-quote-consistency=yes
check-str-concat-over-line-jumps=yes
[pylint.TYPECHECK]
contextmanager-decorators=contextlib.contextmanager
generated-members=
ignore-mixin-members=yes
ignore-none=yes
ignore-on-opaque-inference=yes
ignored-classes=thread._local,_thread._local
ignored-modules=
missing-member-hint=yes
missing-member-hint-distance=1
missing-member-max-choices=1
signature-mutators=
[pylint.VARIABLES]
additional-builtins=
allow-global-unused-variables=yes
allowed-redefined-builtins=
callbacks=callback_,_callback
dummy-variables-rgx=^_+$|^_[a-zA-Z0-9_]*[a-zA-Z0-9]$
ignored-argument-names=_.*
init-import=no
redefining-builtins-modules=past.builtins,future.builtins,builtins,io
[tool:pytest]
addopts=-x --durations 10 --cov=binstar_client --cov-report term-missing
cache_dir=.cache/pytest