mirror of
https://github.com/teableio/teable
synced 2024-11-23 07:51:00 +00:00
65 lines
1.4 KiB
Plaintext
65 lines
1.4 KiB
Plaintext
{
|
|
"folders": [
|
|
{
|
|
"name": "nextjs-app",
|
|
"path": "apps/nextjs-app"
|
|
},
|
|
{
|
|
"name": "api-gateway",
|
|
"path": "packages/api-gateway"
|
|
},
|
|
{
|
|
"name": "common-i18n",
|
|
"path": "packages/common-i18n"
|
|
},
|
|
{
|
|
"name": "core-lib",
|
|
"path": "packages/core-lib"
|
|
},
|
|
{
|
|
"name": "db-main-prisma",
|
|
"path": "packages/db-main-prisma"
|
|
},
|
|
{
|
|
"name": "eslint-config-bases",
|
|
"path": "packages/eslint-config-bases"
|
|
},
|
|
{
|
|
"name": "ui-lib",
|
|
"path": "packages/ui-lib"
|
|
},
|
|
{
|
|
"name": "root",
|
|
"path": "."
|
|
}
|
|
],
|
|
"extensions": {
|
|
"recommendations": [
|
|
"dbaeumer.vscode-eslint",
|
|
"esbenp.prettier-vscode",
|
|
]
|
|
},
|
|
"settings": {
|
|
"editor.formatOnSave": true,
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll.eslint": true
|
|
},
|
|
// Disable vscode formatting for js,jsx,ts,tsx files
|
|
// to allow dbaeumer.vscode-eslint to format them
|
|
"[javascript]": {
|
|
"editor.formatOnSave": false,
|
|
},
|
|
"eslint.alwaysShowStatus": true,
|
|
// https://github.com/Microsoft/vscode-eslint#mono-repository-setup
|
|
"eslint.workingDirectories": [
|
|
"./apps/nextjs-app",
|
|
"./packages/api-gateway",
|
|
"./packages/common-i18n",
|
|
"./packages/core-lib",
|
|
"./packages/db-main-prisma",
|
|
"./packages/eslint-config-bases",
|
|
"./packages/ui-lib"
|
|
]
|
|
}
|
|
} |