From 7c36dcdc1aa5b2df9d6963f5e1ccde848884278b Mon Sep 17 00:00:00 2001 From: JonZeolla Date: Wed, 3 Feb 2021 10:13:02 -0500 Subject: [PATCH] Fix the default hadolint rule name in the documentation (#1179) * Fix default hadolint rule name * Rename github actions hadolint config in line with the default --- .github/linters/{.hadolint.yml => .hadolint.yaml} | 0 README.md | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename .github/linters/{.hadolint.yml => .hadolint.yaml} (100%) diff --git a/.github/linters/.hadolint.yml b/.github/linters/.hadolint.yaml similarity index 100% rename from .github/linters/.hadolint.yml rename to .github/linters/.hadolint.yaml diff --git a/README.md b/README.md index 928e1da7..b52f62dd 100644 --- a/README.md +++ b/README.md @@ -212,7 +212,7 @@ But if you wish to select or exclude specific linters, we give you full control | **DEFAULT_BRANCH** | `master` | The name of the repository default branch. | | **DEFAULT_WORKSPACE** | `/tmp/lint` | The location containing files to lint if you are running locally. | | **DISABLE_ERRORS** | `false` | Flag to have the linter complete with exit code 0 even if errors were detected. | -| **DOCKERFILE_HADOLINT_FILE_NAME** | `.hadolint.yml` | Filename for [hadolint configuration](https://github.com/hadolint/hadolint) (ex: `.hadolintlintrc.yaml`) | +| **DOCKERFILE_HADOLINT_FILE_NAME** | `.hadolint.yaml` | Filename for [hadolint configuration](https://github.com/hadolint/hadolint) (ex: `.hadolintlintrc.yaml`) | | **EDITORCONFIG_FILE_NAME** | `.ecrc` | Filename for [editorconfig-checker configuration](https://github.com/editorconfig-checker/editorconfig-checker) | | **ERROR_ON_MISSING_EXEC_BIT** | `false` | If set to `false`, the `bash-exec` linter will report a warning if a shell script is not executable. If set to `true`, the `bash-exec` linter will report an error instead. | | **FILTER_REGEX_EXCLUDE** | `none` | Regular expression defining which files will be excluded from linting (ex: `.*src/test.*`) |