Enable shellcheck linting, fix problems
[integration/packaging.git] / .coafile
1 [Default]
2 ignore = .tox/**, .gitignore, .gitreview, .gitmodules, **/provisioning/roles/**, \
3          node_modules/**, ansible/ansible-opendaylight/**, docs/conf.py
4 use_spaces = True
5
6 [DOCS]
7 bears = SpaceConsistencyBear, LineLengthBear
8 #files = ./**/*.rst
9 default_actions = SpaceConsistencyBear: ApplyPatchAction
10
11 [markdown]
12 bears = MarkdownBear
13 #files = ./**/*.markdown, ./**/*.md
14 default_actions = MarkdownBear: ApplyPatchAction
15
16 [dockerfile]
17 bears = DockerfileLintBear
18 #files = ./**/Dockerfile
19
20 [json]
21 bears = JSONFormatBear
22 #files = ./**/*.json
23 default_actions = JSONFormatBear: ApplyPatchAction
24
25 [shellcheck]
26 bears = ShellCheckBear
27 files = ./**/*.sh
28
29 [python]
30 bears = PyUnusedCodeBear
31 files = ./**/*.py
32 default_actions = PyUnusedCodeBear: ApplyPatchAction
33
34 [autopep8]
35 bears = PEP8Bear
36 files = ./**/*.py
37 default_actions = PEP8Bear: ApplyPatchAction
38
39 [yaml]
40 bears = YAMLLintBear
41 yamllint_config = .yamllint
42 files = ./**/*.yaml, ./**/*.yml