-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathsq-server.code-workspace
More file actions
32 lines (29 loc) · 1.02 KB
/
sq-server.code-workspace
File metadata and controls
32 lines (29 loc) · 1.02 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
{
"folders": [{ "name": "sq-server", "path": "." }],
"settings": {
"sonarlint.connectedMode.project": {
"connectionId": "https-next-sonarqube-com-sonarqube",
"projectKey": "SonarSource_sonarqube-server-webapp",
},
"files.exclude": {
// Shitty syntax to keep sq-cloud adapters around since they need to be aligned
"**/sq-cloud/*.*": true,
"**/sq-cloud/[!s]*/": true,
"**/sq-cloud/src/[!s]*/": true,
"**/sq-cloud/src/s[!q]*/": true,
"**/libs/sq-cloud-*/**/*": true,
"private/sq-cloud-*/**/*": true,
},
"files.associations": {
"*.snap": "html",
},
"javascript.format.enable": false,
"javascript.validate.enable": false,
"tailwindCSS.experimental.configFile": "libs/sq-server-commons/config/tailwind/tailwind.config.js",
"typescript.tsdk": "./node_modules/typescript/lib",
"jestrunner.configPath": {
"**/*": "apps/sq-server/jest.config.js",
},
"jest.jestCommandLine": "npx jest -c apps/sq-server/jest.config.js",
},
}