.eslintrc.html.js 501 B

123456789101112131415161718192021
  1. module.exports = {
  2. "plugins": [
  3. "html",
  4. "@html-eslint",
  5. ],
  6. "parser": "@html-eslint/parser",
  7. "extends": ["plugin:@html-eslint/recommended", "./.eslintrc.js"],
  8. "rules": {
  9. "no-alert": "off",
  10. "no-console": "off",
  11. "@html-eslint/require-closing-tags": ["error", { "selfClosing": "never" }],
  12. "@html-eslint/indent": ["error", "tab"],
  13. },
  14. "globals": {
  15. "Godot": true,
  16. "Engine": true,
  17. "$GODOT_CONFIG": true,
  18. "$GODOT_THREADS_ENABLED": true,
  19. "___GODOT_THREADS_ENABLED___": true,
  20. },
  21. };