This repository has been archived on 2024-10-29. You can view files and clone it, but cannot push or open issues or pull requests.
api/.vscode/settings.json

15 lines
431 B
JSON
Raw Normal View History

2021-10-24 04:18:18 +02:00
{
"typescript.tsdk": "node_modules/typescript/lib",
"typescript.preferences.importModuleSpecifierEnding": "js",
2021-10-24 04:18:18 +02:00
"prettier.configPath": ".prettierrc.json",
"editor.defaultFormatter": "esbenp.prettier-vscode",
2021-10-24 04:18:18 +02:00
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll": true
},
2022-03-21 16:08:33 +01:00
"eslint.options": { "ignorePath": ".gitignore" },
2021-10-24 04:18:18 +02:00
"[prisma]": {
"editor.defaultFormatter": "Prisma.prisma"
}
}