Skip to content
This repository was archived by the owner on Apr 25, 2026. It is now read-only.

Commit f1aa771

Browse files
Add .editorconfig-checker and disable pre-commit
In this commit, a new `.editorconfig-checker.json` file has been added that disables various default settings for the checker tool. Additionally, the `linter.yml` GitHub workflow has been updated to also exclude pre-commit validation checks. The changes were made in the Makefile script to reflect these adjustments when running linting commands with super-linter.
1 parent b600fae commit f1aa771

3 files changed

Lines changed: 21 additions & 0 deletions

File tree

.editorconfig-checker.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"Verbose": false,
3+
"Debug": false,
4+
"IgnoreDefaults": false,
5+
"SpacesAfterTabs": false,
6+
"NoColor": false,
7+
"Exclude": [],
8+
"AllowedContentTypes": [],
9+
"PassedFiles": [],
10+
"Disable": {
11+
"Charset": true,
12+
"EndOfLine": false,
13+
"Indentation": false,
14+
"IndentSize": false,
15+
"InsertFinalNewline": false,
16+
"TrimTrailingWhitespace": false,
17+
"MaxLineLength": false
18+
}
19+
}

.github/workflows/linter.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ jobs:
5252
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5353
LINTER_RULES_PATH: /
5454
VALIDATE_SHELL_SHFMT: false
55+
VALIDATE_PRE_COMMIT: false
5556
check-tox:
5657
runs-on: ubuntu-latest
5758
permissions:

Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ lint:
1616
-e LINTER_RULES_PATH=/ \
1717
-e VALIDATE_SHELL_SHFMT=false \
1818
-e VALIDATE_BIOME_FORMAT=false \
19+
-e VALIDATE_PRE_COMMIT=false \
1920
ghcr.io/super-linter/super-linter
2021
tox -e lint
2122

0 commit comments

Comments
 (0)