{ "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 } }