-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
next-mate.code-workspace
77 lines (77 loc) · 1.74 KB
/
next-mate.code-workspace
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"folders": [
{
"name": "root",
"path": ".",
},
{
"name": "next-demo",
"path": "packages/next-demo",
},
{
"name": "next-env",
"path": "packages/next-env",
},
{
"name": "next-auth",
"path": "packages/next-auth",
},
{
"name": "next-core",
"path": "packages/next-core",
},
{
"name": "next-graphql",
"path": "packages/next-graphql",
},
{
"name": "next-prisma",
"path": "packages/next-prisma",
},
],
"extensions": {
"recommendations": [
"dbaeumer.vscode-eslint"
],
},
"settings": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "dbaeumer.vscode-eslint",
"editor.codeActionsOnSave": {
"source.fixAll": "explicit",
"source.organizeImports": "never",
},
"files.associations": {
"*.css": "tailwindcss",
},
// Disable vscode formatting for js,jsx,ts,tsx files
// to allow dbaeumer.vscode-eslint to format them
"[javascript]": {
"editor.formatOnSave": false,
},
"typescript.enablePromptUseWorkspaceTsdk": true,
// https://github.com/Microsoft/vscode-eslint#mono-repository-setup
"eslint.workingDirectories": [
"./packages/next-demo",
"./packages/next-env",
"./packages/next-auth",
"./packages/next-core",
"./packages/next-graphql",
"./packages/next-prisma",
],
"typescript.tsdk": "root/node_modules/typescript/lib",
"[prisma]": {
"editor.defaultFormatter": "Prisma.prisma",
},
"[json]": {
"editor.formatOnSave": false
},
"[jsonc]": {
"editor.formatOnSave": false
},
"i18n-ally.localesPaths": [
"i18n"
],
"i18n-ally.keystyle": "nested",
},
}