mirror of
https://github.com/netbymatt/ws4kp.git
synced 2026-04-14 15:49:31 -07:00
- "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
21 lines
406 B
JSON
21 lines
406 B
JSON
{
|
|
"liveSassCompile.settings.formats": [
|
|
{
|
|
"format": "compressed",
|
|
"extensionName": ".css",
|
|
"savePath": "/server/styles",
|
|
}
|
|
],
|
|
"search.exclude": {
|
|
"**/node_modules": true,
|
|
"**/bower_components": true,
|
|
"**/*.code-search": true,
|
|
"**/compiled.css": true,
|
|
"**/*.min.js": true,
|
|
},
|
|
"editor.formatOnSave": true,
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll.eslint": "explicit"
|
|
},
|
|
}
|