From: Alexandru Avadanii Date: Mon, 22 Jun 2020 13:36:37 +0000 (+0200) Subject: tox: coala: Ignore TYPE3 source code X-Git-Url: https://gerrit.akraino.org/r/gitweb?a=commitdiff_plain;h=89fa7d19f02853eb322b3b864b9dc9b90253316e;p=iec.git tox: coala: Ignore TYPE3 source code Fixes: ce293dc9c03ffaa51751fb2c371c81c2b33d87ad Change-Id: If985aa08cfc821f8dec35c229cd5fe0b3719966c Signed-off-by: Alexandru Avadanii --- diff --git a/.coafile b/.coafile index ed2d780..a9dae48 100644 --- a/.coafile +++ b/.coafile @@ -20,13 +20,15 @@ bears = SpaceConsistencyBear files = docs/**.rst use_spaces = true ignore = .git/**, - .tox/** + .tox/**, + src/type3_AndroidCloud/** [all.ShellCheck] bears = ShellCheckBear,SpaceConsistencyBear files = **.sh shell = bash use_spaces = true +ignore = src/type3_AndroidCloud/** [all.YAML] bears = YAMLLintBear @@ -34,11 +36,13 @@ files = **.yaml, **.yml use_spaces = true ignore_length_regex = ^.*https?:// yamllint_config = .yamllint.conf -ignore = src/use_cases/ +ignore = src/use_cases/**, + src/type3_AndroidCloud/** [all.Python] bears = PyLintBear files = **.py use_spaces = true pylint_disable = E0401, W0401, C0111 -ignore = src/use_cases/ +ignore = src/use_cases/**, + src/type3_AndroidCloud/**