Merge "Add tests for odl user/password feature"
[integration/packaging/ansible-opendaylight.git] / .coafile
1 [all]
2 ignore = .tox/**,
3     .git/**,
4     .gitignore,
5     .gitreview,
6     **.log,
7     node_modules/**,
8     **.sw?,
9     **.orig,
10     **/.vagrant**
11
12 [all.git]
13 bears = GitCommitBear
14 ignore_length_regex = Signed-off-by,
15     Also-by,
16     Co-authored-by,
17     http://,
18     https://
19
20 [all.spacing]
21 bears = SpaceConsistencyBear
22 use_spaces = True
23 enforce_newline_at_EOF = False
24 files = **
25 default_actions = SpaceConsistencyBear: ApplyPatchAction
26
27 [all.Documentation]
28 bears = WriteGoodLintBear
29 files = **.markdown,
30     **.md,
31     **.rst
32 allow_so_beginning = False
33 allow_there_is = False
34 allow_cliche_phrases = False
35
36 [all.linelength]
37 bears = LineLengthBear
38 enabled = False
39 max_line_length = 100
40
41 [all.markdown]
42 bears = MarkdownBear
43 files = **.markdown,
44     **.md
45 default_actions = MarkdownBear: ApplyPatchAction
46
47 [all.rest]
48 bears = RSTcheckBear,
49     reSTLintBear
50 files = **.rst
51
52 [all.yaml]
53 bears = YAMLLintBear
54 yamllint_config = .yamllint
55 files = **.yaml, **.yml
56
57 [all.json]
58 bears = JSONFormatBear
59 files = **.json
60 default_actions = JSONFormatBear: ApplyPatchAction
61
62 [all.xml]
63 bears = XMLBear
64 enabled = False
65 files = **.xml
66
67 [all.python]
68 bears = PEP8Bear,
69     PyUnusedCodeBear,
70     PyImportSortBear
71 files = **.py
72 default_actions = PyUnusedCodeBear: ApplyPatchAction,
73     PyImportSortBear: ApplyPatchAction