summaryrefslogtreecommitdiff
path: root/zephyr/.pylintrc
diff options
context:
space:
mode:
Diffstat (limited to 'zephyr/.pylintrc')
-rw-r--r--zephyr/.pylintrc16
1 files changed, 15 insertions, 1 deletions
diff --git a/zephyr/.pylintrc b/zephyr/.pylintrc
index 817f2453b3..066e00da9d 100644
--- a/zephyr/.pylintrc
+++ b/zephyr/.pylintrc
@@ -1,6 +1,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=fixme
+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