tox: coala: Ignore TYPE3 source code
[iec.git] / .coafile
1 [all]
2 ignore = .tox/**,
3     .git/**,
4     .gitignore,
5     .gitreview,
6     .gitmodules,
7     **.sw?,
8     **.orig
9
10 [all.GitCommit]
11 bears = GitCommitBear
12 ignore_length_regex = Signed-off-by,
13     Also-by,
14     Co-authored-by,
15     http://,
16     https://
17
18 [all.reStructuredText]
19 bears = SpaceConsistencyBear
20 files = docs/**.rst
21 use_spaces = true
22 ignore = .git/**,
23     .tox/**,
24     src/type3_AndroidCloud/**
25
26 [all.ShellCheck]
27 bears = ShellCheckBear,SpaceConsistencyBear
28 files = **.sh
29 shell = bash
30 use_spaces = true
31 ignore = src/type3_AndroidCloud/**
32
33 [all.YAML]
34 bears = YAMLLintBear
35 files = **.yaml, **.yml
36 use_spaces = true
37 ignore_length_regex = ^.*https?://
38 yamllint_config = .yamllint.conf
39 ignore = src/use_cases/**,
40     src/type3_AndroidCloud/**
41
42 [all.Python]
43 bears = PyLintBear
44 files = **.py
45 use_spaces = true
46 pylint_disable = E0401, W0401, C0111
47 ignore = src/use_cases/**,
48     src/type3_AndroidCloud/**