summaryrefslogtreecommitdiff
path: root/zephyr/zmake/.pylintrc
diff options
context:
space:
mode:
Diffstat (limited to 'zephyr/zmake/.pylintrc')
-rw-r--r--zephyr/zmake/.pylintrc21
1 files changed, 15 insertions, 6 deletions
diff --git a/zephyr/zmake/.pylintrc b/zephyr/zmake/.pylintrc
index a33a1fde1c..a0f9ac790b 100644
--- a/zephyr/zmake/.pylintrc
+++ b/zephyr/zmake/.pylintrc
@@ -1,15 +1,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,format,fixme,wrong-import-order
+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]
-max-line-length=88
string-quote=double
-
-[BASIC]
-good-names=
- e,