Change default output format to parsable (#17)

* Change default output format to parsable

`github` format is barely usable in the logs where it only shows that errors/warnings occurred but not which file:line.

* Update README.md
This commit is contained in:
Ilir Bekteshi 2021-04-23 12:03:45 +02:00 committed by GitHub
parent 05a42da02e
commit c2e8eccd22
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -19,7 +19,7 @@ Simple as:
- `file1.yaml` - `file1.yaml`
- `file1.yaml file2.yaml` - `file1.yaml file2.yaml`
- `kustomize/**/*.yaml mychart/*values.yaml` - `kustomize/**/*.yaml mychart/*values.yaml`
- `format` - Format for parsing output [parsable,standard,colored,github,auto] (default: github) - `format` - Format for parsing output [parsable,standard,colored,github,auto] (default: parsable)
- `strict` - Return non-zero exit code on warnings as well as errors [true,false] (default: false) - `strict` - Return non-zero exit code on warnings as well as errors [true,false] (default: false)
**Note:** If `.yamllint` configuration file exists in your root folder, yamllint will automatically use it. **Note:** If `.yamllint` configuration file exists in your root folder, yamllint will automatically use it.

View file

@ -15,7 +15,7 @@ inputs:
format: format:
description: 'Format for parsing output [parsable,standard,colored,github,auto]' description: 'Format for parsing output [parsable,standard,colored,github,auto]'
required: false required: false
default: "github" default: "parsable"
strict: strict:
description: 'Return non-zero exit code on warnings as well as errors' description: 'Return non-zero exit code on warnings as well as errors'
required: false required: false