mirror of
https://github.com/idootop/mi-gpt.git
synced 2025-04-07 20:33:01 +00:00
31 lines
638 B
JSON
31 lines
638 B
JSON
{
|
|
"files.eol": "\n",
|
|
"editor.tabSize": 2,
|
|
"editor.formatOnSave": true,
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
"eslint.validate": [
|
|
"javascript",
|
|
"javascriptreact",
|
|
"typescript",
|
|
"typescriptreact"
|
|
],
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll.eslint": "explicit"
|
|
},
|
|
"search.exclude": {
|
|
"**/.git": true,
|
|
"**/node_modules": true,
|
|
"*.lock": true
|
|
},
|
|
"files.exclude": {
|
|
"**/.git": true,
|
|
"**/node_modules": true
|
|
},
|
|
"[prisma]": {
|
|
"editor.defaultFormatter": "Prisma.prisma"
|
|
},
|
|
"[typescript]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
}
|
|
}
|