-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaui.code-workspace
More file actions
143 lines (143 loc) · 3.95 KB
/
aui.code-workspace
File metadata and controls
143 lines (143 loc) · 3.95 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
{
"folders": [
{
"path": ".",
"name": "root",
},
{
"path": "apps",
},
],
"settings": {
"prettier.documentSelectors": ["**/*.{css,html,js,json,md,scss,ts}"],
"github.copilot.chat.codeGeneration.useInstructionFiles": true,
"npm.packageManager": "npm",
// "angular.log": "verbose",
"angular.forceStrictTemplates": true,
"angular.suggest.includeCompletionsWithSnippetText": true,
"editor.lightbulb.enabled": "on",
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.insertSpaces": true,
"editor.codeActionsOnSave": {
"source.fixAll": "explicit",
"source.organizeImports": "explicit",
},
"editor.rulers": [100],
"editor.overviewRulerBorder": true,
"editor.experimentalWhitespaceRendering": "font",
"editor.renderWhitespace": "none",
"eslint.validate": ["javascript", "typescript", "json", "jsonc", "json5", "html", "css"],
"[css]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
},
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
},
"[html]": {
"editor.defaultFormatter": "Angular.ng-template",
"editor.formatOnSave": true,
},
"[prisma]": {
"editor.defaultFormatter": "Prisma.prisma-insider",
"editor.formatOnSave": true,
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
},
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
},
"[javascriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
},
"[yaml]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
},
"[xml]": {
"editor.defaultFormatter": "redhat.vscode-xml",
"editor.formatOnSave": true,
},
// "typescript.experimental.useTsgo": true,
"typescript.format.semicolons": "insert",
"typescript.preferences.importModuleSpecifier": "non-relative",
"typescript.preferences.importModuleSpecifierEnding": "js",
"typescript.tsdk": "node_modules/typescript/lib",
"javascript.preferences.importModuleSpecifier": "non-relative",
"javascript.preferences.importModuleSpecifierEnding": "js",
"html.autoClosingTags": true,
"html.format.indentInnerHtml": true,
"html.format.maxPreserveNewLines": 1,
"workbench.editor.labelFormat": "medium",
"files.watcherExclude": {
"**/routeTree.gen.ts": true,
},
"files.readonlyInclude": {
"**/routeTree.gen.ts": true,
},
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/.DS_Store": true,
"**/Thumbs.db": true,
"**/node_modules": true,
"**/.nitro": true,
"**/.output": true,
"**/.tanstack": true,
"**/.angular": true,
},
"search.exclude": {
"**/routeTree.gen.ts": true,
"**/node_modules": true,
"**/.nitro": true,
"**/.output": true,
"**/.tanstack": true,
"**/prisma/generated": true,
},
"cSpell.words": [
"Camo",
"coor",
"Coor",
"customerid",
"dbaeumer",
"dotenv",
"labelledby",
"lmdb",
"malva",
"msgpackr",
"ngeslint",
"ngplugin",
"ngsrc",
"ngtemplate",
"Stroustrup",
"Tsgo",
"tsquery",
"tsvector",
"XLARGE",
"XSMALL",
"XXLARGE",
],
},
"extensions": {
"recommendations": [
"angular.ng-template",
"prisma.prisma-insider",
"esbenp.prettier-vscode",
"dbaeumer.vscode-eslint",
],
},
}