Merge pull request #97077 from adamscott/fix-eslint-pre-commit
Some checks are pending
🔗 GHA / 📊 Static checks (push) Waiting to run
🔗 GHA / 🤖 Android (push) Blocked by required conditions
🔗 GHA / 🍏 iOS (push) Blocked by required conditions
🔗 GHA / 🐧 Linux (push) Blocked by required conditions
🔗 GHA / 🍎 macOS (push) Blocked by required conditions
🔗 GHA / 🏁 Windows (push) Blocked by required conditions
🔗 GHA / 🌐 Web (push) Blocked by required conditions
🔗 GHA / 🪲 Godot CPP (push) Blocked by required conditions

Fix eslint .pre-commit-config.yaml by removing commas
This commit is contained in:
Rémi Verschelde 2024-09-16 18:11:00 +02:00 committed by GitHub
commit 99a7a9ccd6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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'