blob: a22c086a348b504f0b51f4cc9d6b48eba2e328c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
[yaml]
bears = YAMLLintBear
yamllint_config = .yamllint
ignore =
.tox/**,
# Doesn't look like a valid YAML although it pretends one
deployment/heat/onap-rke/parts/onap-oom-2.yaml
[json]
bears = JSONFormatBear
json_sort = False
indent_size = 2
ignore =
.tox/**,
# This one ought to be broken
test/mocks/pnfsimulator/pnfsimulator/src/test/resources/org/onap/pnfsimulator/simulator/invalidJsonStructureEvent.json,
# This one is empty
test/mocks/datafilecollector-testharness/simulator-group/consul/consul_config.json
|