diff options
author | mrichomme <morgan.richomme@orange.com> | 2020-03-20 16:54:03 +0100 |
---|---|---|
committer | Morgan Richomme <morgan.richomme@orange.com> | 2020-03-24 13:25:47 +0000 |
commit | ce2d1ddc232b9320807db53ebc2dbd1bd2462b13 (patch) | |
tree | 8f1b86210dabc1dfdcbb5e1722ff16ed524a0ed9 /.coafile | |
parent | b0f72a95c0bf26814a65bf3ea8de0a48d5c2abcd (diff) |
Add tox setup for bbs usecase repository
Based on default config created by Bartek Grzybowski
for other integration repositories
Issue-ID: INT-1496
Signed-off-by: mrichomme <morgan.richomme@orange.com>
Change-Id: If46e22c8d75fa2f8455f7a1d9472a9b151163afb
Signed-off-by: mrichomme <morgan.richomme@orange.com>
Diffstat (limited to '.coafile')
-rw-r--r-- | .coafile | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/.coafile b/.coafile new file mode 100644 index 0000000..470c5ae --- /dev/null +++ b/.coafile @@ -0,0 +1,24 @@ +[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/** |