aboutsummaryrefslogtreecommitdiffstats
path: root/.coafile
diff options
context:
space:
mode:
authormrichomme <morgan.richomme@orange.com>2020-04-21 17:53:52 +0200
committermrichomme <morgan.richomme@orange.com>2020-05-26 09:41:07 +0200
commit6c1ee9ccaf8049e9c55b21f7f486a4a1b09dadef (patch)
tree0a6e52df3b64a07e030d6448a1f2042f1ac35c3f /.coafile
parent5de622a8247c4cf4fc2bd4e5f8a947e60a8c4bfb (diff)
Add linters in xtesting repo
Issue-ID: INT-1523 Signed-off-by: mrichomme <morgan.richomme@orange.com> Change-Id: Ia5ea0ad8d5fbf3cd6778b285e12ae8e455ecd3f7 Signed-off-by: mrichomme <morgan.richomme@orange.com>
Diffstat (limited to '.coafile')
-rw-r--r--.coafile30
1 files changed, 30 insertions, 0 deletions
diff --git a/.coafile b/.coafile
new file mode 100644
index 0000000..c67ac99
--- /dev/null
+++ b/.coafile
@@ -0,0 +1,30 @@
+[yaml]
+bears = YAMLLintBear
+yamllint_config = .yamllint
+ignore =
+ .tox/**,
+
+[json]
+bears = JSONFormatBear
+json_sort = False
+indent_size = 2
+ignore =
+ .tox/**,
+
+[py]
+bears = PyLintBear
+pylint_disable = all
+pylint_enable =
+ bad-indentation, trailing-whitespace, unused-wildcard-import, unused-import,
+ unnecessary-semicolon, unnecessary-semicolon, undefined-variable,
+ syntax-error, unused-variable, using-constant-test,unused-argument,
+ len-as-condition, trailing-newlines, missing-final-newline, reimported,
+ too-many-function-args, singleton-comparison
+ignore =
+ .tox/**
+
+[md]
+bears = MarkdownBear
+ignore =
+ .tox/**
+