25 lines
670 B
JSON
25 lines
670 B
JSON
{
|
|
// Formatting
|
|
"editor.formatOnSave": true,
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
"eslint.workingDirectories": [{ "mode": "auto" }],
|
|
// ESLint auto-fix on save
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll.eslint": "explicit",
|
|
"source.organizeImports": "explicit"
|
|
},
|
|
"npm.autoDetect": "on",
|
|
|
|
// Auto import behavior
|
|
"typescript.preferences.importModuleSpecifier": "non-relative",
|
|
"javascript.preferences.importModuleSpecifier": "non-relative",
|
|
|
|
// Enable ESLint for TS/JS
|
|
"eslint.validate": [
|
|
"javascript",
|
|
"javascriptreact",
|
|
],
|
|
|
|
// Prevent conflicts with Prettier + ESLint
|
|
"prettier.requireConfig": true,
|
|
} |