-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Expand file tree
/
Copy path.pylintrc
More file actions
161 lines (145 loc) · 5.11 KB
/
.pylintrc
File metadata and controls
161 lines (145 loc) · 5.11 KB
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
# The format of this file isn't really documented; just use --generate-rcfile
[MAIN]
# Files or directories to be skipped. They should be base names, not paths.
ignore=.git
# Add files or directories matching the regex patterns to the ignore-list. The
# regex matches against paths and can be in Posix or Windows format.
ignore-paths=
neutron/tests/base.py,
neutron/tests/common/helpers.py,
neutron/tests/fullstack/.*,
neutron/tests/functional/agent/linux/test_iptables.py,
neutron/tests/functional/agent/linux/test_utils.py,
neutron/tests/functional/agent/l3/test_keepalived_state_change.py,
neutron/tests/functional/agent/l3/test_legacy_router.py,
neutron/tests/functional/common/ovn/test_utils.py,
neutron/tests/functional/resources/process.py,
neutron/tests/functional/plugins/ml2/drivers/ovn/mech_driver/ovsdb/test_ovsdb_monitor.py,
neutron/tests/unit/agent/common/test_resource_processing_queue.py,
neutron/tests/unit/agent/linux/test_external_process.py,
neutron/tests/unit/agent/linux/test_dhcp.py,
neutron/tests/unit/agent/linux/test_utils.py,
neutron/tests/unit/extensions/test_external_net.py,
neutron/tests/unit/extensions/test_l3.py,
neutron/tests/unit/ipam/fake_driver.py,
neutron/tests/unit/objects/.*.py,
neutron/tests/unit/plugins/ml2/test_security_group.py,
neutron/tests/unit/plugins/ml2/drivers/test_type_vlan.py,
neutron/tests/unit/plugins/ml2/drivers/openvswitch/agent/test_ovs_tunnel.py,
neutron/tests/unit/privileged/agent/linux/test_ip_lib.py,
neutron/tests/unit/services/qos/drivers/test_manager.py,
neutron/tests/unit/services/logapi/drivers/test_manager.py
# List of plugins (as comma separated values of python module names) to load,
# usually to register additional checkers.
load-plugins=pylint.extensions.no_self_use
# When enabled, pylint would attempt to guess common misconfiguration and emit
# user-friendly hints instead of false-positive error messages.
suggestion-mode=yes
[MESSAGES CONTROL]
# NOTE(gus): This is a long list. A number of these are important and
# should be re-enabled once the offending code is fixed (or marked
# with a local disable)
disable=
# "F" Fatal errors that prevent further processing
import-error,
# "I" Informational noise
# "E" Error for important programming issues (likely bugs)
access-member-before-definition,
no-member,
no-method-argument,
no-self-argument,
not-an-iterable,
possibly-used-before-assignment,
# "W" Warnings for stylistic problems or minor programming issues
abstract-method,
arguments-differ,
attribute-defined-outside-init,
broad-except,
fixme,
global-statement,
not-callable,
protected-access,
redefined-builtin,
redefined-outer-name,
signature-differs,
super-init-not-called,
unpacking-non-sequence,
unused-argument,
unused-import,
unused-variable,
unnecessary-pass,
raise-missing-from,
arguments-renamed,
broad-exception-raised,
unspecified-encoding,
unused-private-member,
# "C" Coding convention violations
consider-iterating-dictionary,
consider-using-enumerate,
invalid-name,
missing-docstring,
singleton-comparison,
superfluous-parens,
ungrouped-imports,
wrong-import-order,
consider-using-f-string,
consider-using-dict-items,
# "R" Refactor recommendations
duplicate-code,
inconsistent-return-statements,
no-self-use,
redefined-argument-from-local,
too-few-public-methods,
too-many-ancestors,
too-many-arguments,
too-many-branches,
too-many-instance-attributes,
too-many-lines,
too-many-locals,
too-many-nested-blocks,
too-many-positional-arguments,
too-many-public-methods,
too-many-return-statements,
too-many-statements,
use-dict-literal
[BASIC]
# Variable names can be 1 to 31 characters long, with lowercase and underscores
variable-rgx=[a-z_][a-z0-9_]{0,30}$
# Argument names can be 2 to 31 characters long, with lowercase and underscores
argument-rgx=[a-z_][a-z0-9_]{1,30}$
# Method names should be at least 3 characters long
# and be lowercased with underscores
method-rgx=([a-z_][a-z0-9_]{2,}|setUp|tearDown)$
# Module names matching neutron-* are ok (files in bin/)
module-rgx=(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+)|(neutron-[a-z0-9_-]+))$
# Don't require docstrings on tests.
no-docstring-rgx=((__.*__)|([tT]est.*)|setUp|tearDown)$
[FORMAT]
# Maximum number of characters on a single line.
max-line-length=79
[VARIABLES]
# List of additional names supposed to be defined in builtins. Remember that
# you should avoid to define new builtins when possible.
# _ is used by our localization
additional-builtins=_
[CLASSES]
# List of valid names for the first argument in a class method.
valid-classmethod-first-arg=cls
# List of valid names for the first argument in a metaclass class method.
valid-metaclass-classmethod-first-arg=cls
[IMPORTS]
# Deprecated modules which should not be used, separated by a comma
deprecated-modules=
# should use oslo_serialization.jsonutils
json,
six
[TYPECHECK]
# List of module names for which member attributes should not be checked
ignored-modules=_MovedItems
# List of decorators that change the signature of a decorated function
signature-mutators=
unittest.mock.patch,
unittest.mock._patch_object
[REPORTS]
# Tells whether to display a full report or only the messages
reports=no