Files
rentierroulette/.vscode/settings.json
2025-11-06 21:51:00 +01:00

17 lines
400 B
JSON

{
// Enable ESLint
"eslint.enable": true,
// Run ESLint for TypeScript/React files
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact"
],
// Run lint *and fix* on save
"editor.codeActionsOnSave": {
"source.fixAll": "always",
"source.fixAll.eslint": "always"
},
"editor.tabSize": 4
}