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