From 8bbc51bacdc40d05207059b6b652225c4bfcf467 Mon Sep 17 00:00:00 2001 From: NicolasVuillamy Date: Sat, 24 Oct 2020 10:39:56 +0200 Subject: [PATCH] Escape pipe in md table --- .automation/build.py | 4 ++-- docs/descriptors/ansible_ansible_lint.md | 4 ++-- docs/descriptors/arm_arm_ttk.md | 4 ++-- docs/descriptors/bash_bash_exec.md | 4 ++-- docs/descriptors/bash_shellcheck.md | 4 ++-- docs/descriptors/bash_shfmt.md | 4 ++-- docs/descriptors/c_cpplint.md | 4 ++-- docs/descriptors/clojure_clj_kondo.md | 4 ++-- docs/descriptors/cloudformation_cfn_lint.md | 4 ++-- docs/descriptors/coffee_coffeelint.md | 4 ++-- docs/descriptors/copypaste_jscpd.md | 4 ++-- docs/descriptors/cpp_cpplint.md | 4 ++-- docs/descriptors/csharp_dotnet_format.md | 4 ++-- docs/descriptors/css_scss_lint.md | 4 ++-- docs/descriptors/css_stylelint.md | 4 ++-- docs/descriptors/dart_dartanalyzer.md | 4 ++-- docs/descriptors/dockerfile_dockerfilelint.md | 4 ++-- docs/descriptors/dockerfile_hadolint.md | 4 ++-- docs/descriptors/editorconfig_editorconfig_checker.md | 4 ++-- docs/descriptors/env_dotenv_linter.md | 4 ++-- docs/descriptors/go_golangci_lint.md | 4 ++-- docs/descriptors/graphql_graphql_schema_linter.md | 4 ++-- docs/descriptors/groovy_npm_groovy_lint.md | 4 ++-- docs/descriptors/html_htmlhint.md | 4 ++-- docs/descriptors/java_checkstyle.md | 4 ++-- docs/descriptors/javascript_eslint.md | 4 ++-- docs/descriptors/javascript_standard.md | 4 ++-- docs/descriptors/json_jsonlint.md | 4 ++-- docs/descriptors/jsx_eslint.md | 4 ++-- docs/descriptors/kotlin_ktlint.md | 4 ++-- docs/descriptors/kubernetes_kubeval.md | 4 ++-- docs/descriptors/latex_chktex.md | 4 ++-- docs/descriptors/lua_luacheck.md | 4 ++-- docs/descriptors/markdown_markdownlint.md | 4 ++-- docs/descriptors/openapi_spectral.md | 4 ++-- docs/descriptors/perl_perlcritic.md | 4 ++-- docs/descriptors/php_php.md | 4 ++-- docs/descriptors/php_phpcs.md | 4 ++-- docs/descriptors/php_phpstan.md | 4 ++-- docs/descriptors/php_psalm.md | 4 ++-- docs/descriptors/powershell_powershell.md | 4 ++-- docs/descriptors/protobuf_protolint.md | 4 ++-- docs/descriptors/puppet_puppet_lint.md | 4 ++-- docs/descriptors/python_black.md | 4 ++-- docs/descriptors/python_flake8.md | 4 ++-- docs/descriptors/python_pylint.md | 4 ++-- docs/descriptors/r_lintr.md | 4 ++-- docs/descriptors/raku_raku.md | 4 ++-- docs/descriptors/ruby_rubocop.md | 4 ++-- docs/descriptors/rust_clippy.md | 4 ++-- docs/descriptors/scala_scalafix.md | 4 ++-- docs/descriptors/snakemake_snakefmt.md | 4 ++-- docs/descriptors/snakemake_snakemake.md | 4 ++-- docs/descriptors/sql_sql_lint.md | 4 ++-- docs/descriptors/tekton_tekton_lint.md | 4 ++-- docs/descriptors/terraform_terragrunt.md | 4 ++-- docs/descriptors/terraform_terrascan.md | 4 ++-- docs/descriptors/terraform_tflint.md | 4 ++-- docs/descriptors/tsx_eslint.md | 4 ++-- docs/descriptors/typescript_eslint.md | 4 ++-- docs/descriptors/typescript_standard.md | 4 ++-- docs/descriptors/xml_xmllint.md | 4 ++-- docs/descriptors/yaml_yamllint.md | 4 ++-- 63 files changed, 126 insertions(+), 126 deletions(-) diff --git a/.automation/build.py b/.automation/build.py index 28e5bdd05d9..bf0f117e3d6 100644 --- a/.automation/build.py +++ b/.automation/build.py @@ -366,9 +366,9 @@ def process_type(linters_by_type, type1, type_label, linters_tables_md): ] linter_doc_md += [ f"| {linter.name}_FILTER_REGEX_INCLUDE | Custom regex including filter
" - f"Ex: `\\/(src|lib)\\/` | |", + f"Ex: `\\/(src\\|lib)\\/` | |", f"| {linter.name}_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
" - f"Ex: `\\/(test|examples)\\/` | |" + f"Ex: `\\/(test\\|examples)\\/` | |" ] if linter.config_file_name is not None: linter_doc_md += [ diff --git a/docs/descriptors/ansible_ansible_lint.md b/docs/descriptors/ansible_ansible_lint.md index 455ffbd6a54..9ce27803667 100644 --- a/docs/descriptors/ansible_ansible_lint.md +++ b/docs/descriptors/ansible_ansible_lint.md @@ -20,8 +20,8 @@ | Variable | Description | Default value | | ----------------- | -------------- | -------------- | -| ANSIBLE_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src|lib)\/` | | -| ANSIBLE_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test|examples)\/` | | +| ANSIBLE_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src\|lib)\/` | | +| ANSIBLE_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test\|examples)\/` | | | ANSIBLE_FILE_NAME | ansible-lint configuration file name
Use `LINTER_DEFAULT` to let the linter find it | `.ansible-lint.yml` | | ANSIBLE_RULES_PATH | Path where to find linter configuration file | Workspace folder, then Mega-Linter default rules | | ANSIBLE_DISABLE_ERRORS | Run linter but disable crash if errors found | `false` | diff --git a/docs/descriptors/arm_arm_ttk.md b/docs/descriptors/arm_arm_ttk.md index 88496faf103..9b2cfb77b24 100644 --- a/docs/descriptors/arm_arm_ttk.md +++ b/docs/descriptors/arm_arm_ttk.md @@ -19,8 +19,8 @@ | Variable | Description | Default value | | ----------------- | -------------- | -------------- | -| ARM_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src|lib)\/` | | -| ARM_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test|examples)\/` | | +| ARM_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src\|lib)\/` | | +| ARM_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test\|examples)\/` | | | ARM_FILE_NAME | arm-ttk configuration file name
Use `LINTER_DEFAULT` to let the linter find it | `.arm-ttk.psd1` | | ARM_RULES_PATH | Path where to find linter configuration file | Workspace folder, then Mega-Linter default rules | | ARM_DISABLE_ERRORS | Run linter but disable crash if errors found | `false` | diff --git a/docs/descriptors/bash_bash_exec.md b/docs/descriptors/bash_bash_exec.md index 96a8380ade9..60ac404ea8d 100644 --- a/docs/descriptors/bash_bash_exec.md +++ b/docs/descriptors/bash_bash_exec.md @@ -20,8 +20,8 @@ | Variable | Description | Default value | | ----------------- | -------------- | -------------- | | ERROR_ON_MISSING_EXEC_BIT | 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 arror instead | false | -| BASH_EXEC_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src|lib)\/` | | -| BASH_EXEC_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test|examples)\/` | | +| BASH_EXEC_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src\|lib)\/` | | +| BASH_EXEC_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test\|examples)\/` | | | BASH_EXEC_DISABLE_ERRORS | Run linter but disable crash if errors found | `false` | ## Behind the scenes diff --git a/docs/descriptors/bash_shellcheck.md b/docs/descriptors/bash_shellcheck.md index 080228cdb02..045fdb78183 100644 --- a/docs/descriptors/bash_shellcheck.md +++ b/docs/descriptors/bash_shellcheck.md @@ -19,8 +19,8 @@ | Variable | Description | Default value | | ----------------- | -------------- | -------------- | -| BASH_SHELLCHECK_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src|lib)\/` | | -| BASH_SHELLCHECK_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test|examples)\/` | | +| BASH_SHELLCHECK_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src\|lib)\/` | | +| BASH_SHELLCHECK_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test\|examples)\/` | | | BASH_SHELLCHECK_DISABLE_ERRORS | Run linter but disable crash if errors found | `false` | ## Behind the scenes diff --git a/docs/descriptors/bash_shfmt.md b/docs/descriptors/bash_shfmt.md index ecf9437e1e4..c1873ab3af7 100644 --- a/docs/descriptors/bash_shfmt.md +++ b/docs/descriptors/bash_shfmt.md @@ -19,8 +19,8 @@ | Variable | Description | Default value | | ----------------- | -------------- | -------------- | -| BASH_SHFMT_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src|lib)\/` | | -| BASH_SHFMT_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test|examples)\/` | | +| BASH_SHFMT_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src\|lib)\/` | | +| BASH_SHFMT_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test\|examples)\/` | | | BASH_SHFMT_DISABLE_ERRORS | Run linter but disable crash if errors found | `false` | ## Behind the scenes diff --git a/docs/descriptors/c_cpplint.md b/docs/descriptors/c_cpplint.md index 312dcddebfd..3bd50b3579a 100644 --- a/docs/descriptors/c_cpplint.md +++ b/docs/descriptors/c_cpplint.md @@ -19,8 +19,8 @@ | Variable | Description | Default value | | ----------------- | -------------- | -------------- | -| C_CPPLINT_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src|lib)\/` | | -| C_CPPLINT_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test|examples)\/` | | +| C_CPPLINT_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src\|lib)\/` | | +| C_CPPLINT_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test\|examples)\/` | | | C_CPPLINT_DISABLE_ERRORS | Run linter but disable crash if errors found | `false` | ## Behind the scenes diff --git a/docs/descriptors/clojure_clj_kondo.md b/docs/descriptors/clojure_clj_kondo.md index ec9ec6e8aa2..6480c8119ed 100644 --- a/docs/descriptors/clojure_clj_kondo.md +++ b/docs/descriptors/clojure_clj_kondo.md @@ -27,8 +27,8 @@ | Variable | Description | Default value | | ----------------- | -------------- | -------------- | -| CLOJURE_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src|lib)\/` | | -| CLOJURE_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test|examples)\/` | | +| CLOJURE_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src\|lib)\/` | | +| CLOJURE_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test\|examples)\/` | | | CLOJURE_FILE_NAME | clj-kondo configuration file name
Use `LINTER_DEFAULT` to let the linter find it | `.clj-kondo/config.edn` | | CLOJURE_RULES_PATH | Path where to find linter configuration file | Workspace folder, then Mega-Linter default rules | | CLOJURE_DISABLE_ERRORS | Run linter but disable crash if errors found | `false` | diff --git a/docs/descriptors/cloudformation_cfn_lint.md b/docs/descriptors/cloudformation_cfn_lint.md index 362c9f457b8..5ed1f439d1e 100644 --- a/docs/descriptors/cloudformation_cfn_lint.md +++ b/docs/descriptors/cloudformation_cfn_lint.md @@ -27,8 +27,8 @@ | Variable | Description | Default value | | ----------------- | -------------- | -------------- | -| CLOUDFORMATION_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src|lib)\/` | | -| CLOUDFORMATION_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test|examples)\/` | | +| CLOUDFORMATION_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src\|lib)\/` | | +| CLOUDFORMATION_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test\|examples)\/` | | | CLOUDFORMATION_FILE_NAME | cfn-lint configuration file name
Use `LINTER_DEFAULT` to let the linter find it | `.cfnlintrc.yml` | | CLOUDFORMATION_RULES_PATH | Path where to find linter configuration file | Workspace folder, then Mega-Linter default rules | | CLOUDFORMATION_DISABLE_ERRORS | Run linter but disable crash if errors found | `false` | diff --git a/docs/descriptors/coffee_coffeelint.md b/docs/descriptors/coffee_coffeelint.md index f810744097d..06465979c2c 100644 --- a/docs/descriptors/coffee_coffeelint.md +++ b/docs/descriptors/coffee_coffeelint.md @@ -20,8 +20,8 @@ | Variable | Description | Default value | | ----------------- | -------------- | -------------- | -| COFFEE_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src|lib)\/` | | -| COFFEE_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test|examples)\/` | | +| COFFEE_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src\|lib)\/` | | +| COFFEE_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test\|examples)\/` | | | COFFEE_FILE_NAME | coffeelint configuration file name
Use `LINTER_DEFAULT` to let the linter find it | `.coffee-lint.json` | | COFFEE_RULES_PATH | Path where to find linter configuration file | Workspace folder, then Mega-Linter default rules | | COFFEE_DISABLE_ERRORS | Run linter but disable crash if errors found | `false` | diff --git a/docs/descriptors/copypaste_jscpd.md b/docs/descriptors/copypaste_jscpd.md index eb12bfd913f..cd368116730 100644 --- a/docs/descriptors/copypaste_jscpd.md +++ b/docs/descriptors/copypaste_jscpd.md @@ -27,8 +27,8 @@ | Variable | Description | Default value | | ----------------- | -------------- | -------------- | -| COPYPASTE_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src|lib)\/` | | -| COPYPASTE_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test|examples)\/` | | +| COPYPASTE_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src\|lib)\/` | | +| COPYPASTE_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test\|examples)\/` | | | COPYPASTE_FILE_NAME | jscpd configuration file name
Use `LINTER_DEFAULT` to let the linter find it | `.jscpd.json` | | COPYPASTE_RULES_PATH | Path where to find linter configuration file | Workspace folder, then Mega-Linter default rules | | COPYPASTE_DISABLE_ERRORS | Run linter but disable crash if errors found | `false` | diff --git a/docs/descriptors/cpp_cpplint.md b/docs/descriptors/cpp_cpplint.md index a6ce0fc1689..9fc83899d02 100644 --- a/docs/descriptors/cpp_cpplint.md +++ b/docs/descriptors/cpp_cpplint.md @@ -19,8 +19,8 @@ | Variable | Description | Default value | | ----------------- | -------------- | -------------- | -| CPP_CPPLINT_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src|lib)\/` | | -| CPP_CPPLINT_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test|examples)\/` | | +| CPP_CPPLINT_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src\|lib)\/` | | +| CPP_CPPLINT_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test\|examples)\/` | | | CPP_CPPLINT_DISABLE_ERRORS | Run linter but disable crash if errors found | `false` | ## Behind the scenes diff --git a/docs/descriptors/csharp_dotnet_format.md b/docs/descriptors/csharp_dotnet_format.md index 00dd1047bce..78a5075826f 100644 --- a/docs/descriptors/csharp_dotnet_format.md +++ b/docs/descriptors/csharp_dotnet_format.md @@ -19,8 +19,8 @@ | Variable | Description | Default value | | ----------------- | -------------- | -------------- | -| CSHARP_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src|lib)\/` | | -| CSHARP_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test|examples)\/` | | +| CSHARP_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src\|lib)\/` | | +| CSHARP_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test\|examples)\/` | | | CSHARP_DISABLE_ERRORS | Run linter but disable crash if errors found | `false` | ## Behind the scenes diff --git a/docs/descriptors/css_scss_lint.md b/docs/descriptors/css_scss_lint.md index 7e68b1bbec4..fbe6066b2b8 100644 --- a/docs/descriptors/css_scss_lint.md +++ b/docs/descriptors/css_scss_lint.md @@ -26,8 +26,8 @@ | Variable | Description | Default value | | ----------------- | -------------- | -------------- | -| CSS_SCSS_LINT_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src|lib)\/` | | -| CSS_SCSS_LINT_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test|examples)\/` | | +| CSS_SCSS_LINT_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src\|lib)\/` | | +| CSS_SCSS_LINT_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test\|examples)\/` | | | CSS_SCSS_LINT_FILE_NAME | scss-lint configuration file name
Use `LINTER_DEFAULT` to let the linter find it | `.scss-lint.yml` | | CSS_SCSS_LINT_RULES_PATH | Path where to find linter configuration file | Workspace folder, then Mega-Linter default rules | | CSS_SCSS_LINT_DISABLE_ERRORS | Run linter but disable crash if errors found | `false` | diff --git a/docs/descriptors/css_stylelint.md b/docs/descriptors/css_stylelint.md index 4a67b360f1a..c8ae988c6e9 100644 --- a/docs/descriptors/css_stylelint.md +++ b/docs/descriptors/css_stylelint.md @@ -27,8 +27,8 @@ | Variable | Description | Default value | | ----------------- | -------------- | -------------- | -| CSS_STYLELINT_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src|lib)\/` | | -| CSS_STYLELINT_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test|examples)\/` | | +| CSS_STYLELINT_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src\|lib)\/` | | +| CSS_STYLELINT_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test\|examples)\/` | | | CSS_STYLELINT_FILE_NAME | stylelint configuration file name
Use `LINTER_DEFAULT` to let the linter find it | `.stylelintrc.json` | | CSS_STYLELINT_RULES_PATH | Path where to find linter configuration file | Workspace folder, then Mega-Linter default rules | | CSS_STYLELINT_DISABLE_ERRORS | Run linter but disable crash if errors found | `false` | diff --git a/docs/descriptors/dart_dartanalyzer.md b/docs/descriptors/dart_dartanalyzer.md index 527438880e3..f7549f321be 100644 --- a/docs/descriptors/dart_dartanalyzer.md +++ b/docs/descriptors/dart_dartanalyzer.md @@ -26,8 +26,8 @@ | Variable | Description | Default value | | ----------------- | -------------- | -------------- | -| DART_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src|lib)\/` | | -| DART_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test|examples)\/` | | +| DART_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src\|lib)\/` | | +| DART_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test\|examples)\/` | | | DART_FILE_NAME | dartanalyzer configuration file name
Use `LINTER_DEFAULT` to let the linter find it | `analysis_options.yml` | | DART_RULES_PATH | Path where to find linter configuration file | Workspace folder, then Mega-Linter default rules | | DART_DISABLE_ERRORS | Run linter but disable crash if errors found | `false` | diff --git a/docs/descriptors/dockerfile_dockerfilelint.md b/docs/descriptors/dockerfile_dockerfilelint.md index 634ea3f2750..8cd31e283f9 100644 --- a/docs/descriptors/dockerfile_dockerfilelint.md +++ b/docs/descriptors/dockerfile_dockerfilelint.md @@ -20,8 +20,8 @@ | Variable | Description | Default value | | ----------------- | -------------- | -------------- | -| DOCKERFILE_DOCKERFILELINT_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src|lib)\/` | | -| DOCKERFILE_DOCKERFILELINT_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test|examples)\/` | | +| DOCKERFILE_DOCKERFILELINT_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src\|lib)\/` | | +| DOCKERFILE_DOCKERFILELINT_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test\|examples)\/` | | | DOCKERFILE_DOCKERFILELINT_FILE_NAME | dockerfilelint configuration file name
Use `LINTER_DEFAULT` to let the linter find it | `.dockerfilelintrc` | | DOCKERFILE_DOCKERFILELINT_RULES_PATH | Path where to find linter configuration file | Workspace folder, then Mega-Linter default rules | | DOCKERFILE_DOCKERFILELINT_DISABLE_ERRORS | Run linter but disable crash if errors found | `false` | diff --git a/docs/descriptors/dockerfile_hadolint.md b/docs/descriptors/dockerfile_hadolint.md index 5be7913f31d..6e6837ce8a1 100644 --- a/docs/descriptors/dockerfile_hadolint.md +++ b/docs/descriptors/dockerfile_hadolint.md @@ -20,8 +20,8 @@ | Variable | Description | Default value | | ----------------- | -------------- | -------------- | -| DOCKERFILE_HADOLINT_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src|lib)\/` | | -| DOCKERFILE_HADOLINT_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test|examples)\/` | | +| DOCKERFILE_HADOLINT_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src\|lib)\/` | | +| DOCKERFILE_HADOLINT_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test\|examples)\/` | | | DOCKERFILE_HADOLINT_FILE_NAME | hadolint configuration file name
Use `LINTER_DEFAULT` to let the linter find it | `.hadolint.yml` | | DOCKERFILE_HADOLINT_RULES_PATH | Path where to find linter configuration file | Workspace folder, then Mega-Linter default rules | | DOCKERFILE_HADOLINT_DISABLE_ERRORS | Run linter but disable crash if errors found | `false` | diff --git a/docs/descriptors/editorconfig_editorconfig_checker.md b/docs/descriptors/editorconfig_editorconfig_checker.md index ac98fe55dc8..fe5e6da272f 100644 --- a/docs/descriptors/editorconfig_editorconfig_checker.md +++ b/docs/descriptors/editorconfig_editorconfig_checker.md @@ -25,8 +25,8 @@ | Variable | Description | Default value | | ----------------- | -------------- | -------------- | -| EDITORCONFIG_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src|lib)\/` | | -| EDITORCONFIG_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test|examples)\/` | | +| EDITORCONFIG_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src\|lib)\/` | | +| EDITORCONFIG_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test\|examples)\/` | | | EDITORCONFIG_FILE_NAME | editorconfig-checker configuration file name
Use `LINTER_DEFAULT` to let the linter find it | `.ecrc` | | EDITORCONFIG_RULES_PATH | Path where to find linter configuration file | Workspace folder, then Mega-Linter default rules | | EDITORCONFIG_DISABLE_ERRORS | Run linter but disable crash if errors found | `false` | diff --git a/docs/descriptors/env_dotenv_linter.md b/docs/descriptors/env_dotenv_linter.md index 102a473e1a0..f77380d2f4e 100644 --- a/docs/descriptors/env_dotenv_linter.md +++ b/docs/descriptors/env_dotenv_linter.md @@ -26,8 +26,8 @@ | Variable | Description | Default value | | ----------------- | -------------- | -------------- | -| ENV_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src|lib)\/` | | -| ENV_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test|examples)\/` | | +| ENV_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src\|lib)\/` | | +| ENV_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test\|examples)\/` | | | ENV_DISABLE_ERRORS | Run linter but disable crash if errors found | `false` | ## Behind the scenes diff --git a/docs/descriptors/go_golangci_lint.md b/docs/descriptors/go_golangci_lint.md index a46f8b4b55a..eac4f1ff47a 100644 --- a/docs/descriptors/go_golangci_lint.md +++ b/docs/descriptors/go_golangci_lint.md @@ -27,8 +27,8 @@ | Variable | Description | Default value | | ----------------- | -------------- | -------------- | -| GO_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src|lib)\/` | | -| GO_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test|examples)\/` | | +| GO_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src\|lib)\/` | | +| GO_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test\|examples)\/` | | | GO_FILE_NAME | golangci-lint configuration file name
Use `LINTER_DEFAULT` to let the linter find it | `.golangci.yml` | | GO_RULES_PATH | Path where to find linter configuration file | Workspace folder, then Mega-Linter default rules | | GO_DISABLE_ERRORS | Run linter but disable crash if errors found | `false` | diff --git a/docs/descriptors/graphql_graphql_schema_linter.md b/docs/descriptors/graphql_graphql_schema_linter.md index 42a5dde6c12..19c95616f9c 100644 --- a/docs/descriptors/graphql_graphql_schema_linter.md +++ b/docs/descriptors/graphql_graphql_schema_linter.md @@ -19,8 +19,8 @@ | Variable | Description | Default value | | ----------------- | -------------- | -------------- | -| GRAPHQL_GRAPHQL_SCHEMA_LINTER_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src|lib)\/` | | -| GRAPHQL_GRAPHQL_SCHEMA_LINTER_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test|examples)\/` | | +| GRAPHQL_GRAPHQL_SCHEMA_LINTER_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src\|lib)\/` | | +| GRAPHQL_GRAPHQL_SCHEMA_LINTER_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test\|examples)\/` | | | GRAPHQL_GRAPHQL_SCHEMA_LINTER_FILE_NAME | graphql-schema-linter configuration file name
Use `LINTER_DEFAULT` to let the linter find it | `.graphql-schema-linterrc` | | GRAPHQL_GRAPHQL_SCHEMA_LINTER_RULES_PATH | Path where to find linter configuration file | Workspace folder, then Mega-Linter default rules | | GRAPHQL_GRAPHQL_SCHEMA_LINTER_DISABLE_ERRORS | Run linter but disable crash if errors found | `false` | diff --git a/docs/descriptors/groovy_npm_groovy_lint.md b/docs/descriptors/groovy_npm_groovy_lint.md index 3ee3b7d6221..4a59f8ba08d 100644 --- a/docs/descriptors/groovy_npm_groovy_lint.md +++ b/docs/descriptors/groovy_npm_groovy_lint.md @@ -20,8 +20,8 @@ | Variable | Description | Default value | | ----------------- | -------------- | -------------- | -| GROOVY_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src|lib)\/` | | -| GROOVY_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test|examples)\/` | | +| GROOVY_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src\|lib)\/` | | +| GROOVY_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test\|examples)\/` | | | GROOVY_FILE_NAME | npm-groovy-lint configuration file name
Use `LINTER_DEFAULT` to let the linter find it | `.groovylintrc.json` | | GROOVY_RULES_PATH | Path where to find linter configuration file | Workspace folder, then Mega-Linter default rules | | GROOVY_DISABLE_ERRORS | Run linter but disable crash if errors found | `false` | diff --git a/docs/descriptors/html_htmlhint.md b/docs/descriptors/html_htmlhint.md index 090eee13eef..ace4f0b3790 100644 --- a/docs/descriptors/html_htmlhint.md +++ b/docs/descriptors/html_htmlhint.md @@ -20,8 +20,8 @@ | Variable | Description | Default value | | ----------------- | -------------- | -------------- | -| HTML_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src|lib)\/` | | -| HTML_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test|examples)\/` | | +| HTML_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src\|lib)\/` | | +| HTML_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test\|examples)\/` | | | HTML_FILE_NAME | htmlhint configuration file name
Use `LINTER_DEFAULT` to let the linter find it | `.htmlhintrc` | | HTML_RULES_PATH | Path where to find linter configuration file | Workspace folder, then Mega-Linter default rules | | HTML_DISABLE_ERRORS | Run linter but disable crash if errors found | `false` | diff --git a/docs/descriptors/java_checkstyle.md b/docs/descriptors/java_checkstyle.md index c19083a3add..f7bbae0c2a3 100644 --- a/docs/descriptors/java_checkstyle.md +++ b/docs/descriptors/java_checkstyle.md @@ -27,8 +27,8 @@ | Variable | Description | Default value | | ----------------- | -------------- | -------------- | -| JAVA_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src|lib)\/` | | -| JAVA_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test|examples)\/` | | +| JAVA_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src\|lib)\/` | | +| JAVA_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test\|examples)\/` | | | JAVA_FILE_NAME | checkstyle configuration file name
Use `LINTER_DEFAULT` to let the linter find it | `sun_checks.xml` | | JAVA_RULES_PATH | Path where to find linter configuration file | Workspace folder, then Mega-Linter default rules | | JAVA_DISABLE_ERRORS | Run linter but disable crash if errors found | `false` | diff --git a/docs/descriptors/javascript_eslint.md b/docs/descriptors/javascript_eslint.md index d977ccab548..4b4ee049810 100644 --- a/docs/descriptors/javascript_eslint.md +++ b/docs/descriptors/javascript_eslint.md @@ -27,8 +27,8 @@ | Variable | Description | Default value | | ----------------- | -------------- | -------------- | -| JAVASCRIPT_ES_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src|lib)\/` | | -| JAVASCRIPT_ES_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test|examples)\/` | | +| JAVASCRIPT_ES_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src\|lib)\/` | | +| JAVASCRIPT_ES_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test\|examples)\/` | | | JAVASCRIPT_ES_FILE_NAME | eslint configuration file name
Use `LINTER_DEFAULT` to let the linter find it | `.eslintrc.yml` | | JAVASCRIPT_ES_RULES_PATH | Path where to find linter configuration file | Workspace folder, then Mega-Linter default rules | | JAVASCRIPT_ES_DISABLE_ERRORS | Run linter but disable crash if errors found | `false` | diff --git a/docs/descriptors/javascript_standard.md b/docs/descriptors/javascript_standard.md index 43b649546a3..76b90726a81 100644 --- a/docs/descriptors/javascript_standard.md +++ b/docs/descriptors/javascript_standard.md @@ -26,8 +26,8 @@ | Variable | Description | Default value | | ----------------- | -------------- | -------------- | -| JAVASCRIPT_STANDARD_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src|lib)\/` | | -| JAVASCRIPT_STANDARD_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test|examples)\/` | | +| JAVASCRIPT_STANDARD_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src\|lib)\/` | | +| JAVASCRIPT_STANDARD_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test\|examples)\/` | | | JAVASCRIPT_STANDARD_DISABLE_ERRORS | Run linter but disable crash if errors found | `false` | ## Behind the scenes diff --git a/docs/descriptors/json_jsonlint.md b/docs/descriptors/json_jsonlint.md index 274e0412a1e..af4b8bbacf8 100644 --- a/docs/descriptors/json_jsonlint.md +++ b/docs/descriptors/json_jsonlint.md @@ -19,8 +19,8 @@ | Variable | Description | Default value | | ----------------- | -------------- | -------------- | -| JSON_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src|lib)\/` | | -| JSON_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test|examples)\/` | | +| JSON_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src\|lib)\/` | | +| JSON_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test\|examples)\/` | | | JSON_DISABLE_ERRORS | Run linter but disable crash if errors found | `false` | ## Behind the scenes diff --git a/docs/descriptors/jsx_eslint.md b/docs/descriptors/jsx_eslint.md index 82e1f52e4ca..ac6afa70ed8 100644 --- a/docs/descriptors/jsx_eslint.md +++ b/docs/descriptors/jsx_eslint.md @@ -27,8 +27,8 @@ | Variable | Description | Default value | | ----------------- | -------------- | -------------- | -| JSX_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src|lib)\/` | | -| JSX_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test|examples)\/` | | +| JSX_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src\|lib)\/` | | +| JSX_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test\|examples)\/` | | | JSX_FILE_NAME | eslint configuration file name
Use `LINTER_DEFAULT` to let the linter find it | `.eslintrc.yml` | | JSX_RULES_PATH | Path where to find linter configuration file | Workspace folder, then Mega-Linter default rules | | JSX_DISABLE_ERRORS | Run linter but disable crash if errors found | `false` | diff --git a/docs/descriptors/kotlin_ktlint.md b/docs/descriptors/kotlin_ktlint.md index 507212cce60..e81fd8545d0 100644 --- a/docs/descriptors/kotlin_ktlint.md +++ b/docs/descriptors/kotlin_ktlint.md @@ -26,8 +26,8 @@ | Variable | Description | Default value | | ----------------- | -------------- | -------------- | -| KOTLIN_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src|lib)\/` | | -| KOTLIN_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test|examples)\/` | | +| KOTLIN_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src\|lib)\/` | | +| KOTLIN_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test\|examples)\/` | | | KOTLIN_DISABLE_ERRORS | Run linter but disable crash if errors found | `false` | ## Behind the scenes diff --git a/docs/descriptors/kubernetes_kubeval.md b/docs/descriptors/kubernetes_kubeval.md index 9d646bc066a..5e239bfa26f 100644 --- a/docs/descriptors/kubernetes_kubeval.md +++ b/docs/descriptors/kubernetes_kubeval.md @@ -19,8 +19,8 @@ | Variable | Description | Default value | | ----------------- | -------------- | -------------- | -| KUBERNETES_KUBEVAL_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src|lib)\/` | | -| KUBERNETES_KUBEVAL_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test|examples)\/` | | +| KUBERNETES_KUBEVAL_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src\|lib)\/` | | +| KUBERNETES_KUBEVAL_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test\|examples)\/` | | | KUBERNETES_KUBEVAL_DISABLE_ERRORS | Run linter but disable crash if errors found | `false` | | KUBERNETES_DIRECTORY | Directory containing KUBERNETES files | `kubernetes` | diff --git a/docs/descriptors/latex_chktex.md b/docs/descriptors/latex_chktex.md index 93b2316beee..074eb0a27a1 100644 --- a/docs/descriptors/latex_chktex.md +++ b/docs/descriptors/latex_chktex.md @@ -20,8 +20,8 @@ | Variable | Description | Default value | | ----------------- | -------------- | -------------- | -| LATEX_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src|lib)\/` | | -| LATEX_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test|examples)\/` | | +| LATEX_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src\|lib)\/` | | +| LATEX_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test\|examples)\/` | | | LATEX_FILE_NAME | chktex configuration file name
Use `LINTER_DEFAULT` to let the linter find it | `.chktexrc` | | LATEX_RULES_PATH | Path where to find linter configuration file | Workspace folder, then Mega-Linter default rules | | LATEX_DISABLE_ERRORS | Run linter but disable crash if errors found | `false` | diff --git a/docs/descriptors/lua_luacheck.md b/docs/descriptors/lua_luacheck.md index 84713767459..74d10549f97 100644 --- a/docs/descriptors/lua_luacheck.md +++ b/docs/descriptors/lua_luacheck.md @@ -20,8 +20,8 @@ | Variable | Description | Default value | | ----------------- | -------------- | -------------- | -| LUA_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src|lib)\/` | | -| LUA_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test|examples)\/` | | +| LUA_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src\|lib)\/` | | +| LUA_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test\|examples)\/` | | | LUA_FILE_NAME | luacheck configuration file name
Use `LINTER_DEFAULT` to let the linter find it | `.luacheckrc` | | LUA_RULES_PATH | Path where to find linter configuration file | Workspace folder, then Mega-Linter default rules | | LUA_DISABLE_ERRORS | Run linter but disable crash if errors found | `false` | diff --git a/docs/descriptors/markdown_markdownlint.md b/docs/descriptors/markdown_markdownlint.md index 05254cf98ec..1c2da9106c7 100644 --- a/docs/descriptors/markdown_markdownlint.md +++ b/docs/descriptors/markdown_markdownlint.md @@ -20,8 +20,8 @@ | Variable | Description | Default value | | ----------------- | -------------- | -------------- | -| MARKDOWN_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src|lib)\/` | | -| MARKDOWN_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test|examples)\/` | | +| MARKDOWN_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src\|lib)\/` | | +| MARKDOWN_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test\|examples)\/` | | | MARKDOWN_FILE_NAME | markdownlint configuration file name
Use `LINTER_DEFAULT` to let the linter find it | `.markdown-lint.yml` | | MARKDOWN_RULES_PATH | Path where to find linter configuration file | Workspace folder, then Mega-Linter default rules | | MARKDOWN_DISABLE_ERRORS | Run linter but disable crash if errors found | `false` | diff --git a/docs/descriptors/openapi_spectral.md b/docs/descriptors/openapi_spectral.md index 3fa48dbafc1..8e9ef814992 100644 --- a/docs/descriptors/openapi_spectral.md +++ b/docs/descriptors/openapi_spectral.md @@ -27,8 +27,8 @@ | Variable | Description | Default value | | ----------------- | -------------- | -------------- | -| OPENAPI_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src|lib)\/` | | -| OPENAPI_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test|examples)\/` | | +| OPENAPI_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src\|lib)\/` | | +| OPENAPI_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test\|examples)\/` | | | OPENAPI_FILE_NAME | spectral configuration file name
Use `LINTER_DEFAULT` to let the linter find it | `.openapirc.yml` | | OPENAPI_RULES_PATH | Path where to find linter configuration file | Workspace folder, then Mega-Linter default rules | | OPENAPI_DISABLE_ERRORS | Run linter but disable crash if errors found | `false` | diff --git a/docs/descriptors/perl_perlcritic.md b/docs/descriptors/perl_perlcritic.md index 0d3f958223a..ed98bca3911 100644 --- a/docs/descriptors/perl_perlcritic.md +++ b/docs/descriptors/perl_perlcritic.md @@ -26,8 +26,8 @@ | Variable | Description | Default value | | ----------------- | -------------- | -------------- | -| PERL_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src|lib)\/` | | -| PERL_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test|examples)\/` | | +| PERL_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src\|lib)\/` | | +| PERL_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test\|examples)\/` | | | PERL_DISABLE_ERRORS | Run linter but disable crash if errors found | `false` | ## Behind the scenes diff --git a/docs/descriptors/php_php.md b/docs/descriptors/php_php.md index 630e10da2fc..7136bbc110b 100644 --- a/docs/descriptors/php_php.md +++ b/docs/descriptors/php_php.md @@ -26,8 +26,8 @@ | Variable | Description | Default value | | ----------------- | -------------- | -------------- | -| PHP_BUILTIN_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src|lib)\/` | | -| PHP_BUILTIN_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test|examples)\/` | | +| PHP_BUILTIN_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src\|lib)\/` | | +| PHP_BUILTIN_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test\|examples)\/` | | | PHP_BUILTIN_DISABLE_ERRORS | Run linter but disable crash if errors found | `false` | ## Behind the scenes diff --git a/docs/descriptors/php_phpcs.md b/docs/descriptors/php_phpcs.md index 9bee61c8718..8c6a469f420 100644 --- a/docs/descriptors/php_phpcs.md +++ b/docs/descriptors/php_phpcs.md @@ -20,8 +20,8 @@ | Variable | Description | Default value | | ----------------- | -------------- | -------------- | -| PHP_PHPCS_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src|lib)\/` | | -| PHP_PHPCS_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test|examples)\/` | | +| PHP_PHPCS_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src\|lib)\/` | | +| PHP_PHPCS_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test\|examples)\/` | | | PHP_PHPCS_FILE_NAME | phpcs configuration file name
Use `LINTER_DEFAULT` to let the linter find it | `phpcs.xml` | | PHP_PHPCS_RULES_PATH | Path where to find linter configuration file | Workspace folder, then Mega-Linter default rules | | PHP_PHPCS_DISABLE_ERRORS | Run linter but disable crash if errors found | `false` | diff --git a/docs/descriptors/php_phpstan.md b/docs/descriptors/php_phpstan.md index 85377555c28..4c2cbfb3592 100644 --- a/docs/descriptors/php_phpstan.md +++ b/docs/descriptors/php_phpstan.md @@ -20,8 +20,8 @@ | Variable | Description | Default value | | ----------------- | -------------- | -------------- | -| PHP_PHPSTAN_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src|lib)\/` | | -| PHP_PHPSTAN_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test|examples)\/` | | +| PHP_PHPSTAN_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src\|lib)\/` | | +| PHP_PHPSTAN_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test\|examples)\/` | | | PHP_PHPSTAN_FILE_NAME | phpstan configuration file name
Use `LINTER_DEFAULT` to let the linter find it | `phpstan.neon` | | PHP_PHPSTAN_RULES_PATH | Path where to find linter configuration file | Workspace folder, then Mega-Linter default rules | | PHP_PHPSTAN_DISABLE_ERRORS | Run linter but disable crash if errors found | `false` | diff --git a/docs/descriptors/php_psalm.md b/docs/descriptors/php_psalm.md index 5ff2207e89a..7ca7f3be033 100644 --- a/docs/descriptors/php_psalm.md +++ b/docs/descriptors/php_psalm.md @@ -27,8 +27,8 @@ | Variable | Description | Default value | | ----------------- | -------------- | -------------- | -| PHP_PSALM_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src|lib)\/` | | -| PHP_PSALM_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test|examples)\/` | | +| PHP_PSALM_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src\|lib)\/` | | +| PHP_PSALM_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test\|examples)\/` | | | PHP_PSALM_FILE_NAME | psalm configuration file name
Use `LINTER_DEFAULT` to let the linter find it | `psalm.xml` | | PHP_PSALM_RULES_PATH | Path where to find linter configuration file | Workspace folder, then Mega-Linter default rules | | PHP_PSALM_DISABLE_ERRORS | Run linter but disable crash if errors found | `false` | diff --git a/docs/descriptors/powershell_powershell.md b/docs/descriptors/powershell_powershell.md index d4000d11404..4c5943555f3 100644 --- a/docs/descriptors/powershell_powershell.md +++ b/docs/descriptors/powershell_powershell.md @@ -20,8 +20,8 @@ | Variable | Description | Default value | | ----------------- | -------------- | -------------- | -| POWERSHELL_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src|lib)\/` | | -| POWERSHELL_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test|examples)\/` | | +| POWERSHELL_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src\|lib)\/` | | +| POWERSHELL_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test\|examples)\/` | | | POWERSHELL_FILE_NAME | powershell configuration file name
Use `LINTER_DEFAULT` to let the linter find it | `.powershell-psscriptanalyzer.psd1` | | POWERSHELL_RULES_PATH | Path where to find linter configuration file | Workspace folder, then Mega-Linter default rules | | POWERSHELL_DISABLE_ERRORS | Run linter but disable crash if errors found | `false` | diff --git a/docs/descriptors/protobuf_protolint.md b/docs/descriptors/protobuf_protolint.md index f6e08aadd66..0f5e0bde29b 100644 --- a/docs/descriptors/protobuf_protolint.md +++ b/docs/descriptors/protobuf_protolint.md @@ -20,8 +20,8 @@ | Variable | Description | Default value | | ----------------- | -------------- | -------------- | -| PROTOBUF_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src|lib)\/` | | -| PROTOBUF_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test|examples)\/` | | +| PROTOBUF_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src\|lib)\/` | | +| PROTOBUF_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test\|examples)\/` | | | PROTOBUF_FILE_NAME | protolint configuration file name
Use `LINTER_DEFAULT` to let the linter find it | `.protolintrc.yml` | | PROTOBUF_RULES_PATH | Path where to find linter configuration file | Workspace folder, then Mega-Linter default rules | | PROTOBUF_DISABLE_ERRORS | Run linter but disable crash if errors found | `false` | diff --git a/docs/descriptors/puppet_puppet_lint.md b/docs/descriptors/puppet_puppet_lint.md index 7cb2aa56bf1..4da6b460723 100644 --- a/docs/descriptors/puppet_puppet_lint.md +++ b/docs/descriptors/puppet_puppet_lint.md @@ -19,8 +19,8 @@ | Variable | Description | Default value | | ----------------- | -------------- | -------------- | -| PUPPET_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src|lib)\/` | | -| PUPPET_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test|examples)\/` | | +| PUPPET_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src\|lib)\/` | | +| PUPPET_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test\|examples)\/` | | | PUPPET_FILE_NAME | puppet-lint configuration file name
Use `LINTER_DEFAULT` to let the linter find it | `.puppet-lint.rc` | | PUPPET_RULES_PATH | Path where to find linter configuration file | Workspace folder, then Mega-Linter default rules | | PUPPET_DISABLE_ERRORS | Run linter but disable crash if errors found | `false` | diff --git a/docs/descriptors/python_black.md b/docs/descriptors/python_black.md index 88a1acdf88a..2587abb8e49 100644 --- a/docs/descriptors/python_black.md +++ b/docs/descriptors/python_black.md @@ -27,8 +27,8 @@ | Variable | Description | Default value | | ----------------- | -------------- | -------------- | -| PYTHON_BLACK_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src|lib)\/` | | -| PYTHON_BLACK_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test|examples)\/` | | +| PYTHON_BLACK_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src\|lib)\/` | | +| PYTHON_BLACK_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test\|examples)\/` | | | PYTHON_BLACK_FILE_NAME | black configuration file name
Use `LINTER_DEFAULT` to let the linter find it | `.python-black` | | PYTHON_BLACK_RULES_PATH | Path where to find linter configuration file | Workspace folder, then Mega-Linter default rules | | PYTHON_BLACK_DISABLE_ERRORS | Run linter but disable crash if errors found | `false` | diff --git a/docs/descriptors/python_flake8.md b/docs/descriptors/python_flake8.md index 4d7d645bbe6..8eff57072ca 100644 --- a/docs/descriptors/python_flake8.md +++ b/docs/descriptors/python_flake8.md @@ -20,8 +20,8 @@ | Variable | Description | Default value | | ----------------- | -------------- | -------------- | -| PYTHON_FLAKE8_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src|lib)\/` | | -| PYTHON_FLAKE8_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test|examples)\/` | | +| PYTHON_FLAKE8_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src\|lib)\/` | | +| PYTHON_FLAKE8_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test\|examples)\/` | | | PYTHON_FLAKE8_FILE_NAME | flake8 configuration file name
Use `LINTER_DEFAULT` to let the linter find it | `.flake8` | | PYTHON_FLAKE8_RULES_PATH | Path where to find linter configuration file | Workspace folder, then Mega-Linter default rules | | PYTHON_FLAKE8_DISABLE_ERRORS | Run linter but disable crash if errors found | `false` | diff --git a/docs/descriptors/python_pylint.md b/docs/descriptors/python_pylint.md index 8b2b356426c..8edb43d1fce 100644 --- a/docs/descriptors/python_pylint.md +++ b/docs/descriptors/python_pylint.md @@ -27,8 +27,8 @@ | Variable | Description | Default value | | ----------------- | -------------- | -------------- | -| PYTHON_PYLINT_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src|lib)\/` | | -| PYTHON_PYLINT_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test|examples)\/` | | +| PYTHON_PYLINT_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src\|lib)\/` | | +| PYTHON_PYLINT_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test\|examples)\/` | | | PYTHON_PYLINT_FILE_NAME | pylint configuration file name
Use `LINTER_DEFAULT` to let the linter find it | `.python-lint` | | PYTHON_PYLINT_RULES_PATH | Path where to find linter configuration file | Workspace folder, then Mega-Linter default rules | | PYTHON_PYLINT_DISABLE_ERRORS | Run linter but disable crash if errors found | `false` | diff --git a/docs/descriptors/r_lintr.md b/docs/descriptors/r_lintr.md index c8a58a45387..105674acfb6 100644 --- a/docs/descriptors/r_lintr.md +++ b/docs/descriptors/r_lintr.md @@ -20,8 +20,8 @@ | Variable | Description | Default value | | ----------------- | -------------- | -------------- | -| R_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src|lib)\/` | | -| R_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test|examples)\/` | | +| R_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src\|lib)\/` | | +| R_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test\|examples)\/` | | | R_FILE_NAME | lintr configuration file name
Use `LINTER_DEFAULT` to let the linter find it | `.lintr` | | R_RULES_PATH | Path where to find linter configuration file | Workspace folder, then Mega-Linter default rules | | R_DISABLE_ERRORS | Run linter but disable crash if errors found | `false` | diff --git a/docs/descriptors/raku_raku.md b/docs/descriptors/raku_raku.md index 8b68736de2b..72ba51d7ff9 100644 --- a/docs/descriptors/raku_raku.md +++ b/docs/descriptors/raku_raku.md @@ -19,8 +19,8 @@ | Variable | Description | Default value | | ----------------- | -------------- | -------------- | -| RAKU_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src|lib)\/` | | -| RAKU_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test|examples)\/` | | +| RAKU_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src\|lib)\/` | | +| RAKU_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test\|examples)\/` | | | RAKU_FILE_NAME | raku configuration file name
Use `LINTER_DEFAULT` to let the linter find it | `META6.json` | | RAKU_RULES_PATH | Path where to find linter configuration file | Workspace folder, then Mega-Linter default rules | | RAKU_DISABLE_ERRORS | Run linter but disable crash if errors found | `false` | diff --git a/docs/descriptors/ruby_rubocop.md b/docs/descriptors/ruby_rubocop.md index f3e15974ecf..39255f17b58 100644 --- a/docs/descriptors/ruby_rubocop.md +++ b/docs/descriptors/ruby_rubocop.md @@ -27,8 +27,8 @@ | Variable | Description | Default value | | ----------------- | -------------- | -------------- | -| RUBY_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src|lib)\/` | | -| RUBY_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test|examples)\/` | | +| RUBY_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src\|lib)\/` | | +| RUBY_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test\|examples)\/` | | | RUBY_FILE_NAME | rubocop configuration file name
Use `LINTER_DEFAULT` to let the linter find it | `.ruby-lint.yml` | | RUBY_RULES_PATH | Path where to find linter configuration file | Workspace folder, then Mega-Linter default rules | | RUBY_DISABLE_ERRORS | Run linter but disable crash if errors found | `false` | diff --git a/docs/descriptors/rust_clippy.md b/docs/descriptors/rust_clippy.md index 02407ec5925..a69c1592a27 100644 --- a/docs/descriptors/rust_clippy.md +++ b/docs/descriptors/rust_clippy.md @@ -19,8 +19,8 @@ | Variable | Description | Default value | | ----------------- | -------------- | -------------- | -| RUST_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src|lib)\/` | | -| RUST_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test|examples)\/` | | +| RUST_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src\|lib)\/` | | +| RUST_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test\|examples)\/` | | | RUST_FILE_NAME | clippy configuration file name
Use `LINTER_DEFAULT` to let the linter find it | `.clippy.toml` | | RUST_RULES_PATH | Path where to find linter configuration file | Workspace folder, then Mega-Linter default rules | | RUST_DISABLE_ERRORS | Run linter but disable crash if errors found | `false` | diff --git a/docs/descriptors/scala_scalafix.md b/docs/descriptors/scala_scalafix.md index 2064a1f8738..8c2f06ec6f1 100644 --- a/docs/descriptors/scala_scalafix.md +++ b/docs/descriptors/scala_scalafix.md @@ -20,8 +20,8 @@ | Variable | Description | Default value | | ----------------- | -------------- | -------------- | -| SCALA_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src|lib)\/` | | -| SCALA_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test|examples)\/` | | +| SCALA_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src\|lib)\/` | | +| SCALA_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test\|examples)\/` | | | SCALA_FILE_NAME | scalafix configuration file name
Use `LINTER_DEFAULT` to let the linter find it | `.scalafix.conf` | | SCALA_RULES_PATH | Path where to find linter configuration file | Workspace folder, then Mega-Linter default rules | | SCALA_DISABLE_ERRORS | Run linter but disable crash if errors found | `false` | diff --git a/docs/descriptors/snakemake_snakefmt.md b/docs/descriptors/snakemake_snakefmt.md index a29cb818eba..7d4b231d9d5 100644 --- a/docs/descriptors/snakemake_snakefmt.md +++ b/docs/descriptors/snakemake_snakefmt.md @@ -20,8 +20,8 @@ | Variable | Description | Default value | | ----------------- | -------------- | -------------- | -| SNAKEMAKE_SNAKEFMT_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src|lib)\/` | | -| SNAKEMAKE_SNAKEFMT_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test|examples)\/` | | +| SNAKEMAKE_SNAKEFMT_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src\|lib)\/` | | +| SNAKEMAKE_SNAKEFMT_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test\|examples)\/` | | | SNAKEMAKE_SNAKEFMT_FILE_NAME | snakefmt configuration file name
Use `LINTER_DEFAULT` to let the linter find it | `.snakefmt.toml` | | SNAKEMAKE_SNAKEFMT_RULES_PATH | Path where to find linter configuration file | Workspace folder, then Mega-Linter default rules | | SNAKEMAKE_SNAKEFMT_DISABLE_ERRORS | Run linter but disable crash if errors found | `false` | diff --git a/docs/descriptors/snakemake_snakemake.md b/docs/descriptors/snakemake_snakemake.md index aa162575d4e..6628eb29b22 100644 --- a/docs/descriptors/snakemake_snakemake.md +++ b/docs/descriptors/snakemake_snakemake.md @@ -26,8 +26,8 @@ | Variable | Description | Default value | | ----------------- | -------------- | -------------- | -| SNAKEMAKE_LINT_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src|lib)\/` | | -| SNAKEMAKE_LINT_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test|examples)\/` | | +| SNAKEMAKE_LINT_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src\|lib)\/` | | +| SNAKEMAKE_LINT_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test\|examples)\/` | | | SNAKEMAKE_LINT_DISABLE_ERRORS | Run linter but disable crash if errors found | `false` | ## Behind the scenes diff --git a/docs/descriptors/sql_sql_lint.md b/docs/descriptors/sql_sql_lint.md index 7a747613f85..7f4a43c8c7e 100644 --- a/docs/descriptors/sql_sql_lint.md +++ b/docs/descriptors/sql_sql_lint.md @@ -20,8 +20,8 @@ | Variable | Description | Default value | | ----------------- | -------------- | -------------- | -| SQL_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src|lib)\/` | | -| SQL_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test|examples)\/` | | +| SQL_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src\|lib)\/` | | +| SQL_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test\|examples)\/` | | | SQL_FILE_NAME | sql-lint configuration file name
Use `LINTER_DEFAULT` to let the linter find it | `.sql-config.json` | | SQL_RULES_PATH | Path where to find linter configuration file | Workspace folder, then Mega-Linter default rules | | SQL_DISABLE_ERRORS | Run linter but disable crash if errors found | `false` | diff --git a/docs/descriptors/tekton_tekton_lint.md b/docs/descriptors/tekton_tekton_lint.md index 903dbe70da5..278f0f2f82c 100644 --- a/docs/descriptors/tekton_tekton_lint.md +++ b/docs/descriptors/tekton_tekton_lint.md @@ -19,8 +19,8 @@ | Variable | Description | Default value | | ----------------- | -------------- | -------------- | -| TEKTON_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src|lib)\/` | | -| TEKTON_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test|examples)\/` | | +| TEKTON_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src\|lib)\/` | | +| TEKTON_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test\|examples)\/` | | | TEKTON_FILE_NAME | tekton-lint configuration file name
Use `LINTER_DEFAULT` to let the linter find it | `.tektonlintrc.yaml` | | TEKTON_RULES_PATH | Path where to find linter configuration file | Workspace folder, then Mega-Linter default rules | | TEKTON_DISABLE_ERRORS | Run linter but disable crash if errors found | `false` | diff --git a/docs/descriptors/terraform_terragrunt.md b/docs/descriptors/terraform_terragrunt.md index ba057c8e693..32d898b02ec 100644 --- a/docs/descriptors/terraform_terragrunt.md +++ b/docs/descriptors/terraform_terragrunt.md @@ -19,8 +19,8 @@ | Variable | Description | Default value | | ----------------- | -------------- | -------------- | -| TERRAFORM_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src|lib)\/` | | -| TERRAFORM_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test|examples)\/` | | +| TERRAFORM_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src\|lib)\/` | | +| TERRAFORM_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test\|examples)\/` | | | TERRAFORM_FILE_NAME | terragrunt configuration file name
Use `LINTER_DEFAULT` to let the linter find it | `terragrunt.hcl` | | TERRAFORM_RULES_PATH | Path where to find linter configuration file | Workspace folder, then Mega-Linter default rules | | TERRAFORM_DISABLE_ERRORS | Run linter but disable crash if errors found | `false` | diff --git a/docs/descriptors/terraform_terrascan.md b/docs/descriptors/terraform_terrascan.md index 23ccc787a55..c8e09085681 100644 --- a/docs/descriptors/terraform_terrascan.md +++ b/docs/descriptors/terraform_terrascan.md @@ -26,8 +26,8 @@ | Variable | Description | Default value | | ----------------- | -------------- | -------------- | -| TERRAFORM_TERRASCAN_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src|lib)\/` | | -| TERRAFORM_TERRASCAN_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test|examples)\/` | | +| TERRAFORM_TERRASCAN_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src\|lib)\/` | | +| TERRAFORM_TERRASCAN_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test\|examples)\/` | | | TERRAFORM_TERRASCAN_DISABLE_ERRORS | Run linter but disable crash if errors found | `false` | ## Behind the scenes diff --git a/docs/descriptors/terraform_tflint.md b/docs/descriptors/terraform_tflint.md index 5ff5e4880c2..8dd99d15ba1 100644 --- a/docs/descriptors/terraform_tflint.md +++ b/docs/descriptors/terraform_tflint.md @@ -20,8 +20,8 @@ | Variable | Description | Default value | | ----------------- | -------------- | -------------- | -| TERRAFORM_TFLINT_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src|lib)\/` | | -| TERRAFORM_TFLINT_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test|examples)\/` | | +| TERRAFORM_TFLINT_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src\|lib)\/` | | +| TERRAFORM_TFLINT_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test\|examples)\/` | | | TERRAFORM_TFLINT_FILE_NAME | tflint configuration file name
Use `LINTER_DEFAULT` to let the linter find it | `.tflint.hcl` | | TERRAFORM_TFLINT_RULES_PATH | Path where to find linter configuration file | Workspace folder, then Mega-Linter default rules | | TERRAFORM_TFLINT_DISABLE_ERRORS | Run linter but disable crash if errors found | `false` | diff --git a/docs/descriptors/tsx_eslint.md b/docs/descriptors/tsx_eslint.md index f4047762caf..d25bb866ff2 100644 --- a/docs/descriptors/tsx_eslint.md +++ b/docs/descriptors/tsx_eslint.md @@ -27,8 +27,8 @@ | Variable | Description | Default value | | ----------------- | -------------- | -------------- | -| TSX_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src|lib)\/` | | -| TSX_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test|examples)\/` | | +| TSX_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src\|lib)\/` | | +| TSX_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test\|examples)\/` | | | TSX_FILE_NAME | eslint configuration file name
Use `LINTER_DEFAULT` to let the linter find it | `.eslintrc.yml` | | TSX_RULES_PATH | Path where to find linter configuration file | Workspace folder, then Mega-Linter default rules | | TSX_DISABLE_ERRORS | Run linter but disable crash if errors found | `false` | diff --git a/docs/descriptors/typescript_eslint.md b/docs/descriptors/typescript_eslint.md index 4c9e48f02cd..a32a75635c3 100644 --- a/docs/descriptors/typescript_eslint.md +++ b/docs/descriptors/typescript_eslint.md @@ -27,8 +27,8 @@ | Variable | Description | Default value | | ----------------- | -------------- | -------------- | -| TYPESCRIPT_ES_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src|lib)\/` | | -| TYPESCRIPT_ES_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test|examples)\/` | | +| TYPESCRIPT_ES_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src\|lib)\/` | | +| TYPESCRIPT_ES_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test\|examples)\/` | | | TYPESCRIPT_ES_FILE_NAME | eslint configuration file name
Use `LINTER_DEFAULT` to let the linter find it | `.eslintrc.yml` | | TYPESCRIPT_ES_RULES_PATH | Path where to find linter configuration file | Workspace folder, then Mega-Linter default rules | | TYPESCRIPT_ES_DISABLE_ERRORS | Run linter but disable crash if errors found | `false` | diff --git a/docs/descriptors/typescript_standard.md b/docs/descriptors/typescript_standard.md index 94b44155e26..8cbf2fe2265 100644 --- a/docs/descriptors/typescript_standard.md +++ b/docs/descriptors/typescript_standard.md @@ -26,8 +26,8 @@ | Variable | Description | Default value | | ----------------- | -------------- | -------------- | -| TYPESCRIPT_STANDARD_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src|lib)\/` | | -| TYPESCRIPT_STANDARD_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test|examples)\/` | | +| TYPESCRIPT_STANDARD_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src\|lib)\/` | | +| TYPESCRIPT_STANDARD_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test\|examples)\/` | | | TYPESCRIPT_STANDARD_DISABLE_ERRORS | Run linter but disable crash if errors found | `false` | ## Behind the scenes diff --git a/docs/descriptors/xml_xmllint.md b/docs/descriptors/xml_xmllint.md index da6a881a29c..50268397927 100644 --- a/docs/descriptors/xml_xmllint.md +++ b/docs/descriptors/xml_xmllint.md @@ -19,8 +19,8 @@ | Variable | Description | Default value | | ----------------- | -------------- | -------------- | -| XML_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src|lib)\/` | | -| XML_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test|examples)\/` | | +| XML_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src\|lib)\/` | | +| XML_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test\|examples)\/` | | | XML_DISABLE_ERRORS | Run linter but disable crash if errors found | `false` | ## Behind the scenes diff --git a/docs/descriptors/yaml_yamllint.md b/docs/descriptors/yaml_yamllint.md index 2641ce62279..bc9d58d5083 100644 --- a/docs/descriptors/yaml_yamllint.md +++ b/docs/descriptors/yaml_yamllint.md @@ -20,8 +20,8 @@ | Variable | Description | Default value | | ----------------- | -------------- | -------------- | -| YAML_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src|lib)\/` | | -| YAML_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test|examples)\/` | | +| YAML_FILTER_REGEX_INCLUDE | Custom regex including filter
Ex: `\/(src\|lib)\/` | | +| YAML_FILTER_REGEX_EXCLUDE | Custom regex excluding filter
Ex: `\/(test\|examples)\/` | | | YAML_FILE_NAME | yamllint configuration file name
Use `LINTER_DEFAULT` to let the linter find it | `.yaml-lint.yml` | | YAML_RULES_PATH | Path where to find linter configuration file | Workspace folder, then Mega-Linter default rules | | YAML_DISABLE_ERRORS | Run linter but disable crash if errors found | `false` |