From 427c105c589f0737871a60759b416eda6fb52bf2 Mon Sep 17 00:00:00 2001 From: mrichomme Date: Wed, 3 Jun 2020 09:48:34 +0200 Subject: Add tox.ini for pythonsdk-tests Issue-ID: INT-1607 Signed-off-by: mrichomme Change-Id: I668882bcceb98c47896486c600f24fae52341b61 Signed-off-by: mrichomme --- .coafile | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .coafile (limited to '.coafile') 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/** + -- cgit 1.2.3-korg