Merge "Add code verification tools"
[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
25 [all.ShellCheck]
26 bears = ShellCheckBear,SpaceConsistencyBear
27 files = **.sh
28 shell = bash
29 use_spaces = true
30
31 [all.YAML]
32 bears = YAMLLintBear
33 files = **.yaml, **.yml
34 use_spaces = true
35 ignore_length_regex = ^.*https?://
36 max_line_length = 120
37 ignore = src/use_cases/
38
39 [all.Python]
40 bears = PyLintBear
41 files = **.py
42 use_spaces = true
43 pylint_disable = E0401, W0401, C0111
44 ignore = src/use_cases/