Bartek Grzybowski | 76c43bf | 2020-02-28 14:09:43 +0100 | [diff] [blame] | 1 | [yaml] |
| 2 | bears = YAMLLintBear |
| 3 | yamllint_config = .yamllint |
| 4 | ignore = |
| 5 | .tox/**, |
| 6 | # Doesn't look like a valid YAML although it pretends one |
| 7 | deployment/heat/onap-rke/parts/onap-oom-2.yaml |
| 8 | |
| 9 | [json] |
| 10 | bears = JSONFormatBear |
| 11 | json_sort = False |
| 12 | indent_size = 2 |
| 13 | ignore = |
| 14 | .tox/**, |
Bartek Grzybowski | 76c43bf | 2020-02-28 14:09:43 +0100 | [diff] [blame] | 15 | # This one is empty |
| 16 | test/mocks/datafilecollector-testharness/simulator-group/consul/consul_config.json |
Bartek Grzybowski | 13de1c6 | 2020-03-06 14:20:07 +0100 | [diff] [blame] | 17 | |
| 18 | [py] |
| 19 | bears = PyLintBear |
| 20 | pylint_disable = all |
| 21 | pylint_enable = |
| 22 | bad-indentation, trailing-whitespace, unused-wildcard-import, unused-import, |
| 23 | unnecessary-semicolon, unnecessary-semicolon, undefined-variable, |
| 24 | syntax-error, unused-variable, using-constant-test,unused-argument, |
| 25 | len-as-condition, trailing-newlines, missing-final-newline, reimported, |
| 26 | too-many-function-args, singleton-comparison |
| 27 | ignore = |
| 28 | .tox/** |
mrichomme | cd33b63 | 2020-04-09 18:38:07 +0200 | [diff] [blame] | 29 | |
mrichomme | cd33b63 | 2020-04-09 18:38:07 +0200 | [diff] [blame] | 30 | [md] |
| 31 | bears = MarkdownBear |
| 32 | ignore = |
| 33 | .tox/** |
| 34 | |