mi-gpt/.vscode/settings.json

31 lines
638 B
JSON
Raw Permalink Normal View History

2024-01-24 15:14:28 +00:00
{
"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
2024-01-25 18:06:22 +00:00
},
"[prisma]": {
"editor.defaultFormatter": "Prisma.prisma"
2024-03-05 13:08:34 +00:00
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
2024-01-24 15:14:28 +00:00
}
}