[APACHECNF] CDS workflows for upgrade scenario
[demo.git] / .coafile
1 [yaml]
2 bears = YAMLLintBear
3 yamllint_config = .yamllint
4 # [vFW_CNF_CDS][APACHE] Helm uses go template conditionals that are not yaml-compliant
5 ignore =
6   .tox/**,
7   heat/vFW_CNF_CDS/templates/helm/**/templates/tests/*,
8   tutorials/ApacheCNF/templates/cba/Templates/k8s-configs/deployment-config/templates/*
9
10 [json]
11 bears = JSONFormatBear
12 json_sort = False
13 indent_size = 4
14 ignore =
15   .tox/**
16
17 [py]
18 bears = PyLintBear
19 pylint_disable = all
20 pylint_enable =
21   bad-indentation, trailing-whitespace, unused-wildcard-import, unused-import,
22   unnecessary-semicolon, unnecessary-semicolon, undefined-variable,
23   syntax-error, unused-variable, using-constant-test,unused-argument,
24   len-as-condition, trailing-newlines, missing-final-newline, reimported,
25   too-many-function-args, singleton-comparison
26 ignore =
27   .tox/**