34a9872df1
- Set editor.formatOnSave to true - Set Prettier as the default formatter - ESLint continues to handle code quality via codeActionsOnSave - Prettier handles all formatting with eslint-config-prettier disabling conflicting rules Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
13 lines
487 B
JSON
13 lines
487 B
JSON
{
|
|
"typescript.tsdk": "node_modules/typescript/lib",
|
|
"editor.formatOnSave": true,
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll.eslint": "explicit"
|
|
},
|
|
"typescript.preferences.importModuleSpecifier": "non-relative",
|
|
"spellright.language": ["en"],
|
|
"spellright.documentTypes": ["markdown", "typescript", "typescriptreact"],
|
|
"tailwindCSS.experimental.classRegex": [["cva\\(([^)]*)\\)", "[\"'`]([^\"'`]*).*?[\"'`]"]]
|
|
}
|