Add Coala linting
[integration/packaging/ansible-opendaylight.git] / .coafile
1 [default]
2 ignore = .tox/**, .git/**, .gitignore, .gitreview, **.log,
3     node_modules/**, **.sw?, **.orig, **/.vagrant**
4
5 [git]
6 bears = GitCommitBear
7 ignore_length_regex = Signed-off-by,
8     Also-by,
9     Co-authored-by,
10
11 [spacing]
12 bears = SpaceConsistencyBear
13 use_spaces = True
14 enforce_newline_at_EOF = False
15 files = **
16 default_actions = SpaceConsistencyBear: ApplyPatchAction
17
18 [linelength]
19 bears = LineLengthBear
20 enabled = False
21 max_line_length = 100
22
23 [markdown]
24 bears = MarkdownBear
25 enabled = False
26 files = **.markdown, **.md
27 default_actions = MarkdownBear: ApplyPatchAction
28
29 [rest]
30 bears = RSTcheckBear, reSTLintBear
31 files = **.rst
32
33 [yaml]
34 bears = YAMLLintBear
35 yamllint_config = .yamllint
36 files = **.yaml, **.yml
37
38 [json]
39 bears = JSONFormatBear
40 files = **.json
41 default_actions = JSONFormatBear: ApplyPatchAction
42
43 [xml]
44 bears = XMLBear
45 enabled = False
46 files = **.xml