-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pylintrc
75 lines (61 loc) · 2.52 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# Copyright 2014 Google Inc. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# This file is taken from the suggested pylint configuration in
# Google's Python Style Guide, specifically
# https://github.com/google/styleguide/blob/28d10d1/pylintrc
# with some changes:
# - suppress consider-using-f-string as too noisy
# - Commented out the disabling of no-self-use in order to get rid of
# the "useless option value" warning.
# - Disabled the duplicate-code check because there's too much unavoidable
# code similarity between compiler.py and printer.py.
# - Turned off the score message in the [REPORTS] section.
[MAIN]
persistent=yes
[MESSAGES CONTROL]
disable=
broad-except,
consider-using-f-string, # over-sensitive
duplicate-code, # Too much is duplicated between printer and compiler.
exec-used, # The uses of exec in this package are okay.
fixme, # Don't want warnings for this.
global-statement,
locally-disabled,
missing-docstring,
# no-self-use, # Pylint generates a 'useless option value' warning for this
too-many-arguments,
too-few-public-methods,
too-many-branches,
too-many-instance-attributes,
too-many-locals,
too-many-public-methods,
too-many-return-statements,
unidiomatic-typecheck,
[REPORTS]
reports=no
[SCORE]
score=no # Suppress the "score" message in the output.
[BASIC]
# By default, pylint wants method names to be at most 31 chars long,
# but we want to allow up to 49 to allow for longer test names.
method-rgx=[a-zA-Z_][a-zA-Z0-9_]{0,48}$
# By default, pylint only allows UPPER_CASE constants, but we want to
# allow snake_case as well in some situations.
const-rgx=[a-zA-Z_][a-zA-Z0-9_]{0,30}$
# By default, pylint wants all parameter names to be at least two chars long,
# but we want to allow single-char parameter names as well.
argument-rgx=[a-z_][a-z0-9_]{0,30}$
# By default, pylint wants all variable names to be at least two chars long,
# but we want to allow single-char variable names as well.
variable-rgx=[a-z_][a-z0-9_]{0,30}$