diff options
author | mrichomme <morgan.richomme@orange.com> | 2020-05-15 15:37:12 +0200 |
---|---|---|
committer | mrichomme <morgan.richomme@orange.com> | 2020-05-15 15:37:12 +0200 |
commit | 988b1c1b481229488eb22d380029926bc647403b (patch) | |
tree | 8218512004edabdfe588d55b8de9dc8d84b4cc12 /.coafile | |
parent | 6b08637c603490789c993b7e9019a96b0a1f51a0 (diff) |
Add tox.ini
Issue-ID: INT-1587
Signed-off-by: mrichomme <morgan.richomme@orange.com>
Change-Id: I7378d4ef4fce7737133a6eeb26f26baea4de35ab
Diffstat (limited to '.coafile')
-rw-r--r-- | .coafile | 29 |
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/** |