forked from effect-app/boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.json
More file actions
78 lines (78 loc) · 1.97 KB
/
settings.json
File metadata and controls
78 lines (78 loc) · 1.97 KB
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
78
{
"workbench.editor.labelFormat": "short",
"explorer.sortOrderLexicographicOptions": "upper",
"typescript.preferences.includePackageJsonAutoImports": "on",
"typescript.preferences.autoImportFileExcludePatterns": [
"node_modules/@sentry/node",
"node_modules/@azure/cosmos",
"node_modules/effect-app/Schema",
"node_modules/lodash",
"node_modules/typescript",
"node_modules/@types/lodash",
"node_modules/@nuxt/schema",
"node_modules/vitest/*",
"node_modules/vuetify/lib/*",
"node_modules/express-oauth2-jwt-bearer",
"node_modules/fast-check",
"node_modules/effect/*",
"node_modules/@effect/schema/Schema",
".nuxt"
],
"typescript.tsdk": "node_modules/typescript/lib",
"eslint.workingDirectories": [
{
"pattern": "."
},
{
"pattern": "frontend-*"
}
],
"eslint.execArgv": [
"--max-old-space-size=8192"
],
"editor.formatOnSave": true,
"eslint.format.enable": true,
"[vue]": {
"editor.defaultFormatter": "dbaeumer.vscode-eslint",
"editor.codeActionsOnSave": [
"source.addMissingImports"
]
},
"[javascript]": {
"editor.defaultFormatter": "dbaeumer.vscode-eslint",
"editor.codeActionsOnSave": [
"source.addMissingImports"
]
},
"[javascriptreact]": {
"editor.defaultFormatter": "dbaeumer.vscode-eslint",
"editor.codeActionsOnSave": [
"source.addMissingImports"
]
},
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"[typescript]": {
"editor.defaultFormatter": "dbaeumer.vscode-eslint",
"editor.codeActionsOnSave": [
"source.addMissingImports"
]
},
"[typescriptreact]": {
"editor.defaultFormatter": "dbaeumer.vscode-eslint",
"editor.codeActionsOnSave": [
"source.addMissingImports"
]
},
"csv-preview.separator": ";",
"cSpell.words": [
"codegen",
"composables",
"pipeable",
"tsplus"
],
"githubPullRequests.ignoredPullRequestBranches": [
"main"
]
}