36 lines
1.0 KiB
JSON
36 lines
1.0 KiB
JSON
{
|
|
"eslint.workingDirectories": [
|
|
{
|
|
"mode": "auto"
|
|
}
|
|
],
|
|
|
|
// Javascript and TypeScript settings
|
|
"javascript.suggest.enabled": true,
|
|
"javascript.suggest.autoImports": true,
|
|
"javascript.preferences.importModuleSpecifier": "shortest",
|
|
|
|
"typescript.suggest.enabled": true,
|
|
"typescript.suggest.autoImports": true,
|
|
"typescript.suggest.completeFunctionCalls": true,
|
|
"typescript.suggest.includeAutomaticOptionalChainCompletions": true,
|
|
"typescript.suggestionActions.enabled": true,
|
|
"typescript.preferences.importModuleSpecifier": "shortest",
|
|
|
|
"editor.codeActionsOnSave": {
|
|
"source.organizeImports": "explicit",
|
|
"source.fixAll.eslint": "explicit"
|
|
},
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
"editor.formatOnSave": true,
|
|
"editor.formatOnPaste": false,
|
|
"prettier.useEditorConfig": false,
|
|
"prettier.useTabs": false,
|
|
"prettier.configPath": ".prettierrc",
|
|
|
|
// other vscode settings
|
|
"[handlebars]": {
|
|
"editor.defaultFormatter": "vscode.html-language-features"
|
|
} // <- your root font size here
|
|
}
|