summaryrefslogtreecommitdiff
path: root/zephyr/zmake/.pylintrc
blob: a0f9ac790be7a39cfc28e6f7f6be2d8b61ed4c57 (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
[MASTER]
init-hook='import sys; sys.path.extend(["zephyr/zmake"])'

[BASIC]
good-names=
    e,

# cros lint doesn't inherit the pylintrc from the parent dir.
# These settings are copied from platform/ec/pylintrc
[MESSAGES CONTROL]

disable=
    bad-continuation,
    bad-whitespace,
    # These have nothing to do with black, they are just annoying
    fixme,
    too-many-arguments,
    too-many-statements,
    too-many-branches,
    too-many-locals

[format]

string-quote=double