Update VS Code settings

- "eslint.validate": [ "javascript" ] is no longer needed
    (Modern versions of the ESLint VS Code extensions
    automatically validate JavaScript files by default.)
- Configure editor to use tabs instead of spaces per ESLint rules
- Switch to VS Code's built-in HTML formatter
- Add EJS file associations for proper syntax highlighting
- Add recommended extensions for development workflow
This commit is contained in:
Eddy G
2025-06-24 22:52:59 -04:00
parent ca272de8bf
commit bf65b8e426
2 changed files with 16 additions and 7 deletions

View File

@@ -17,7 +17,4 @@
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit"
},
"eslint.validate": [
"javascript"
],
}
}