blob: 066e00da9da7f2a7b031f4829ec2ec65fd9395c1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
[MASTER]
init-hook='import sys; sys.path.extend(["zephyr/zmake"])'
# 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
|