aleksa.sh/.vscode/settings.json
aleksa a9b8e7bc9e
All checks were successful
E2E Tests with Cypress / cypress (push) Successful in 3m12s
initial boilerplate code
2025-04-12 07:05:13 +02:00

14 lines
484 B
JSON

{
"editor.formatOnSave": true, // Prettier will format on save
"editor.defaultFormatter": "esbenp.prettier-vscode", // Use Prettier for formatting
"eslint.format.enable": false, // Don't let ESLint format
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit", // Run ESLint fixes on save
"source.organizeImports": "explicit" // Organize imports on save
},
"editor.quickSuggestions": {
"other": true,
"comments": false,
"strings": true
}
}