summaryrefslogtreecommitdiffstats
path: root/test/lib/ansible_test/_util/controller/sanity/pylint/config/ansible-test.cfg
blob: 1c03472c7b1bd87aa3164e14f793280737283bfb (plain)
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
[MESSAGES CONTROL]

disable=
    consider-using-f-string,  # many occurrences
    cyclic-import,  # consistent results require running with --jobs 1 and testing all files
    deprecated-method,  # results vary by Python version
    deprecated-module,  # results vary by Python version
    duplicate-code,  # consistent results require running with --jobs 1 and testing all files
    import-outside-toplevel,  # common pattern in ansible related code
    raise-missing-from,  # Python 2.x does not support raise from
    too-few-public-methods,
    too-many-public-methods,
    too-many-arguments,
    too-many-branches,
    too-many-instance-attributes,
    too-many-lines,
    too-many-locals,
    too-many-nested-blocks,
    too-many-return-statements,
    too-many-statements,
    unspecified-encoding,  # always run with UTF-8 encoding enforced
    useless-return,  # complains about returning None when the return type is optional

[BASIC]

bad-names=
    _,
    bar,
    baz,
    foo,
    tata,
    toto,
    tutu,

good-names=
    __metaclass__,
    C,
    ex,
    i,
    j,
    k,
    Run,

class-attribute-rgx=[A-Za-z_][A-Za-z0-9_]{1,40}$
attr-rgx=[a-z_][a-z0-9_]{1,40}$
method-rgx=[a-z_][a-z0-9_]{1,40}$
function-rgx=[a-z_][a-z0-9_]{1,40}$

# Use the regex from earlier versions of pylint.
# See: https://github.com/PyCQA/pylint/pull/7322
typevar-rgx=^_{0,2}(?:[^\W\da-z_]+|(?:[^\W\da-z_]+[^\WA-Z_]+)+T?(?<!Type))(?:_co(?:ntra)?)?$

[IMPORTS]

preferred-modules =
    distutils.version:ansible.module_utils.compat.version,

# These modules are used by ansible-test, but will not be present in the virtual environment running pylint.
# Listing them here makes it possible to enable the import-error check.
ignored-modules =
    cryptography,
    coverage,
    yamllint,