forked from lucemia/gcloud-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpylintrc_default
More file actions
33 lines (26 loc) · 969 Bytes
/
pylintrc_default
File metadata and controls
33 lines (26 loc) · 969 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
# This config is intended to be used for library
# and other production code.
[BASIC]
good-names = i, j, k, ex, Run, _, pb, id,
_get_protobuf_attribute_and_value
[DESIGN]
max-args = 10
[FORMAT]
# NOTE: By default pylint ignores whitespace checks around the
# constructs "dict-separator" (cases like {1:2}) and "trailing-comma"
# (cases like {1: 2, }). By setting "no-space-check" to empty
# whitespace checks will be enforced around both constructs.
no-space-check =
[MASTER]
# NOTE: This path must be relative due to the use of
# os.walk in astroid.modutils.get_module_files.
ignore = datastore_v1_pb2.py
[MESSAGES CONTROL]
disable = I, protected-access, maybe-no-member, no-member,
redefined-builtin, star-args, missing-format-attribute,
similarities, arguments-differ,
too-many-public-methods, too-few-public-methods
[REPORTS]
reports = no
[VARIABLES]
dummy-variables-rgx = _$|dummy|^unused_