diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2024-09-16 18:11:00 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-16 18:11:00 +0200 |
commit | 99a7a9ccd60fbe4030e067b3c36d54b67737446d (patch) | |
tree | 54d9e7a33494ea60a1e133cdbf48a3220e9588ef | |
parent | a75bacebef979a17b549c6577defbbfd2f7ef2e0 (diff) | |
parent | 89f9b0d908b79c77c7502c616eb85bdd3aa1f5e6 (diff) | |
download | redot-engine-99a7a9ccd60fbe4030e067b3c36d54b67737446d.tar.gz |
Merge pull request #97077 from adamscott/fix-eslint-pre-commit
Fix eslint .pre-commit-config.yaml by removing commas
-rw-r--r-- | .pre-commit-config.yaml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 70cbe47665..a3bf09bb56 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -97,11 +97,11 @@ repos: entry: eslint files: ^(platform/web/js/|modules/|misc/dist/html/).*\.(js|html)$ args: - - --fix, - - --no-warn-ignored, - - --no-config-lookup, - - --config, - - platform/web/eslint.config.cjs, + - --fix + - --no-warn-ignored + - --no-config-lookup + - --config + - platform/web/eslint.config.cjs additional_dependencies: - '@eslint/js@^9.3.0' - '@html-eslint/eslint-plugin@^0.24.1' |