summaryrefslogtreecommitdiffstats
path: root/.coafile
diff options
context:
space:
mode:
authormrichomme <morgan.richomme@orange.com>2020-06-29 08:29:52 +0200
committerMorgan Richomme <morgan.richomme@orange.com>2020-07-06 08:59:18 +0000
commit2841bb28e3b9cbca5d3e947d0e0de87fb72feca7 (patch)
tree8218512004edabdfe588d55b8de9dc8d84b4cc12 /.coafile
parent80f584b0b942e9bb822cce4ee94861370f81ae1a (diff)
Add tox.ini
wait for jjb Issue-ID: INT-1460 Signed-off-by: mrichomme <morgan.richomme@orange.com> Change-Id: Ie15f025912ced4da38c4508e571cbaf6704c97f1 Signed-off-by: mrichomme <morgan.richomme@orange.com>
Diffstat (limited to '.coafile')
-rw-r--r--.coafile29
1 files changed, 29 insertions, 0 deletions
diff --git a/.coafile b/.coafile
new file mode 100644
index 0000000..37b4252
--- /dev/null
+++ b/.coafile
@@ -0,0 +1,29 @@
+[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/**