diff options
author | morganrol <morgan.richomme@orange.com> | 2021-05-07 14:56:34 +0200 |
---|---|---|
committer | morganrol <morgan.richomme@orange.com> | 2021-05-07 14:56:34 +0200 |
commit | 716a729485d201966973307645954a579d754d39 (patch) | |
tree | e043de3af0d9230fb5abd8b66b5f7557f21db6a4 /.coafile | |
parent | 017fc08036e8c5a7aac70970f0db400aeaed192c (diff) |
[CONFIG] Add tox in terraform repo
files are missing
Issue-ID: INT-1842
Signed-off-by: morganrol <morgan.richomme@orange.com>
Change-Id: I62e196f31f58c3682a74bb6459bbffeb7ebb7435
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..aaae2c1 --- /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/** |