Plugins/CheckerPlugins/CodeStyleChecker/translations.py

changeset 6732
1a4758379c45
parent 6645
ad476851d7e0
child 6882
65d1bf4b7427
diff -r bf2ec89b1975 -r 1a4758379c45 Plugins/CheckerPlugins/CodeStyleChecker/translations.py
--- a/Plugins/CheckerPlugins/CodeStyleChecker/translations.py	Mon Feb 11 19:31:23 2019 +0100
+++ b/Plugins/CheckerPlugins/CodeStyleChecker/translations.py	Mon Feb 11 22:22:12 2019 +0100
@@ -37,6 +37,9 @@
     "E116": QCoreApplication.translate(
         "pycodestyle",
         "unexpected indentation (comment)"),
+    "E117": QCoreApplication.translate(
+        "pycodestyle",
+        "over-indented"),
     "E121": QCoreApplication.translate(
         "pycodestyle",
         "continuation line indentation is not a multiple of four"),
@@ -207,6 +210,9 @@
     "W504": QCoreApplication.translate(
         "pycodestyle",
         "line break after binary operator"),
+    "W505": QCoreApplication.translate(
+        "pycodestyle",
+        "doc line too long ({0} > {1} characters)"),
     "W601": QCoreApplication.translate(
         "pycodestyle",
         ".has_key() is deprecated, use 'in'"),
@@ -801,6 +807,7 @@
     "E307": [3, 1],
     "E308": [3],
     "E501": [85, 79],
+    "W505": [80, 72],
     "E605": ["A"],
     "E711": ["None", "'if cond is None:'"],
     "E712": ["True", "'if cond is True:' or 'if cond:'"],

eric ide

mercurial