From 589beb2693b596d453fb3491b856568cdf198910 Mon Sep 17 00:00:00 2001 From: David Piggott Date: Mon, 4 Apr 2022 15:02:39 +0100 Subject: [PATCH] s/VALIDATE_SCALAFMT_LINT/VALIDATE_SCALAFMT/ in README (#2722) * s/VALIDATE_SCALAFMT_LINT/VALIDATE_SCALAFMT/ in README I needed to disable this linter in a project just now and found that setting VALIDATE_SCALAFMT_LINT had no effect. When I looked at https://github.com/github/super-linter/pull/2053/files it became clear to me it was a typo in the README - I then set VALIDATE_SCALAFMT to false, and that worked as I expected it to. * Fix column alignment --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d585edb5..a76b7d92 100644 --- a/README.md +++ b/README.md @@ -394,7 +394,7 @@ But if you wish to select or exclude specific linters, we give you full control | **VALIDATE_RUST_2018** | `true` | Flag to enable or disable the linting process of Rust language. (edition: 2018) | | **VALIDATE_RUST_2021** | `true` | Flag to enable or disable the linting process of Rust language. (edition: 2021) | | **VALIDATE_RUST_CLIPPY** | `true` | Flag to enable or disable the clippy linting process of Rust language. | -| **VALIDATE_SCALAFMT_LINT** | `true` | Flag to enable or disable the linting process of Scala language. (Utilizing: scalafmt --test) | +| **VALIDATE_SCALAFMT** | `true` | Flag to enable or disable the linting process of Scala language. (Utilizing: scalafmt --test) | | **VALIDATE_SHELL_SHFMT** | `true` | Flag to enable or disable the linting process of Shell scripts. (Utilizing: shfmt) | | **VALIDATE_SNAKEMAKE_LINT** | `true` | Flag to enable or disable the linting process of Snakefiles. (Utilizing: snakemake --lint) | | **VALIDATE_SNAKEMAKE_SNAKEFMT** | `true` | Flag to enable or disable the linting process of Snakefiles. (Utilizing: snakefmt) |