diff options
author | mrichomme <morgan.richomme@orange.com> | 2020-06-03 09:48:34 +0200 |
---|---|---|
committer | Bartek Grzybowski <b.grzybowski@partner.samsung.com> | 2020-06-04 10:59:59 +0200 |
commit | 427c105c589f0737871a60759b416eda6fb52bf2 (patch) | |
tree | 3a918e6fc1cb9e692bbecbd815196e42d51c4d37 /.coafile | |
parent | f46416c1031ebd16613c06d8112d377f09216af0 (diff) |
Add tox.ini for pythonsdk-tests
Issue-ID: INT-1607
Signed-off-by: mrichomme <morgan.richomme@orange.com>
Change-Id: I668882bcceb98c47896486c600f24fae52341b61
Signed-off-by: mrichomme <morgan.richomme@orange.com>
Diffstat (limited to '.coafile')
-rw-r--r-- | .coafile | 30 |
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/** + |