mirror of
https://github.com/YuzuZensai/Termix.git
synced 2026-09-13 10:49:03 +00:00
23 lines
593 B
JSON
23 lines
593 B
JSON
{
|
|||
|
|
"editor.formatOnSave": true,
|
||
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
||
|
|
"prettier.prettierPath": "./node_modules/prettier",
|
||
|
|
"editor.codeActionsOnSave": {
|
||
|
|
"source.fixAll.eslint": "explicit"
|
||
|
|
},
|
||
|
|
"eslint.validate": [
|
||
|
|
"javascript",
|
||
|
|
"javascriptreact",
|
||
|
|
"typescript",
|
||
|
|
"typescriptreact"
|
||
|
|
],
|
||
|
|
"files.eol": "\n",
|
||
|
|
"files.insertFinalNewline": true,
|
||
|
|
"files.trimTrailingWhitespace": true,
|
||
|
|
"[markdown]": {
|
||
|
|
"files.trimTrailingWhitespace": false
|
||
|
|
},
|
||
|
|
"typescript.tsdk": "node_modules/typescript/lib",
|
||
|
|
"typescript.enablePromptUseWorkspaceTsdk": true
|
||
|
|
}
|