forked from aristanetworks/avd
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pylintrc
34 lines (33 loc) · 918 Bytes
/
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
[MASTER]
ignore-paths=
# We will Pylint for ansible_collections separately since it uses it's own pylintrc in the collection root.
ansible_collections,
# The cv_client api is generated from proto files, so it should not be linted.
python-avd/pyavd/_cv/api
[MESSAGES CONTROL]
disable=
attribute-defined-outside-init,
expression-not-assigned,
fixme,
global-statement,
import-error,
inconsistent-return-statements,
invalid-name,
line-too-long,
missing-docstring,
no-member,
pointless-string-statement,
protected-access,
redefined-builtin,
redefined-outer-name,
too-few-public-methods,
too-many-ancestors,
too-many-arguments,
too-many-branches,
too-many-instance-attributes,
too-many-locals,
too-many-nested-blocks,
too-many-public-methods,
too-many-return-statements,
too-many-statements,
wrong-import-position,