This repository was archived by the owner on Sep 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Expand file tree
/
Copy pathsettings.json
More file actions
76 lines (76 loc) · 2.19 KB
/
settings.json
File metadata and controls
76 lines (76 loc) · 2.19 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
{
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"dist": true,
"ui/assets/": true,
"ui/assets/*.go": false,
"client/browser/build": true,
"**/out": true,
"**/__fixtures__/**": true,
"**/.cache": true,
"**/.nyc_output": true,
"doc/_resources/assets": true,
"**/.eslintcache": true,
"bazel*/**": true
},
"files.exclude": {
"**/*.scss.d.ts": true
},
"files.associations": {
"**/dev/critical-config.json": "jsonc",
"**/dev/site-config.json": "jsonc",
"**/.mocharc.json": "jsonc"
},
"json.schemas": [
{
"fileMatch": ["dev/critical-config.json"],
"url": "/schema/critical/critical.schema.json"
},
{
"fileMatch": ["dev/site-config.json"],
"url": "/schema/site.schema.json"
}
],
"editor.formatOnSave": true,
"go.useLanguageServer": true,
"gopls": {
"build.allowImplicitNetworkAccess": true,
"local": "github.com/sourcegraph/sourcegraph"
},
"npm.packageManager": "pnpm",
"npm.runSilent": true,
"typescript.preferences.quoteStyle": "single",
"typescript.preferences.importModuleSpecifier": "relative",
"typescript.format.semicolons": "remove",
"typescript.tsc.autoDetect": "off",
"typescript.tsdk": "node_modules/typescript/lib",
"eslint.packageManager": "pnpm",
"eslint.lintTask.enable": false,
"eslint.validate": ["javascript", "javascriptreact", "typescript", "typescriptreact"],
"editor.codeActionsOnSave": {},
"eslint.codeActionsOnSave.mode": "problems",
"eslint.options": {
"cache": true
},
"eslint.workingDirectories": ["./dev/release", "./client/*"],
"go.lintTool": "golangci-lint",
"shellformat.flag": "-i 2 -ci",
"vscode-graphql.useSchemaFileDefinitions": true,
"nixEnvSelector.nixFile": "${workspaceRoot}/shell.nix",
"nix.enableLanguageServer": true,
"[nix]": {
"editor.insertSpaces": true,
"editor.tabSize": 2
},
"files.watcherExclude": {
"**/target": true
},
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"rust-analyzer.linkedProjects": ["docker-images/syntax-highlighter/Cargo.toml"]
}