aboutsummaryrefslogtreecommitdiffstats
path: root/.coafile
diff options
context:
space:
mode:
authormrichomme <morgan.richomme@orange.com>2020-04-21 17:43:39 +0200
committermrichomme <morgan.richomme@orange.com>2020-05-01 09:14:16 +0200
commited6bd58215d56e166ae2cc2c3365fd0969218ce0 (patch)
treeb6a94867642a5eaac3fde3da88756567581e3595 /.coafile
parente0649bc68fc30f547994b31f3f2aa6e01407d147 (diff)
Add linters for docker-onap-java11 repo
Issue-ID: INT-1523 Signed-off-by: mrichomme <morgan.richomme@orange.com> Change-Id: If86e092b5dc792f5e5f20587effa27d00110d366 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/**