|
1 | 1 | {
|
2 |
| - "files.exclude": { |
3 |
| - "**/node_modules": true |
4 |
| - }, |
5 |
| - "go.lintTool": "golangci-lint", |
6 |
| - "go.lintFlags": ["--fast"], |
7 |
| - "go.lintOnSave": "package", |
8 |
| - "go.coverOnSave": true, |
9 |
| - // The codersdk is used by coderd another other packages extensively. |
10 |
| - // To reduce redundancy in tests, it's covered by other packages. |
11 |
| - "go.testFlags": ["-coverpkg=./.,github.com/coder/coder/codersdk"], |
12 |
| - "go.coverageDecorator": { |
13 |
| - "type": "gutter", |
14 |
| - "coveredHighlightColor": "rgba(64,128,128,0.5)", |
15 |
| - "uncoveredHighlightColor": "rgba(128,64,64,0.25)", |
16 |
| - "coveredBorderColor": "rgba(64,128,128,0.5)", |
17 |
| - "uncoveredBorderColor": "rgba(128,64,64,0.25)", |
18 |
| - "coveredGutterStyle": "blockgreen", |
19 |
| - "uncoveredGutterStyle": "blockred" |
20 |
| - }, |
21 |
| - "emeraldwalk.runonsave": { |
22 |
| - "commands": [ |
23 |
| - { |
24 |
| - "match": "database/query.sql", |
25 |
| - "cmd": "make gen" |
26 |
| - } |
27 |
| - ] |
28 |
| - }, |
29 | 2 | "cSpell.words": [
|
30 | 3 | "coderd",
|
31 | 4 | "coderdtest",
|
|
76 | 49 | "xerrors",
|
77 | 50 | "yamux"
|
78 | 51 | ],
|
79 |
| - "eslint.workingDirectories": ["./site"] |
| 52 | + "emeraldwalk.runonsave": { |
| 53 | + "commands": [ |
| 54 | + { |
| 55 | + "match": "database/query.sql", |
| 56 | + "cmd": "make gen" |
| 57 | + } |
| 58 | + ] |
| 59 | + }, |
| 60 | + "eslint.workingDirectories": ["./site"], |
| 61 | + "files.exclude": { |
| 62 | + "**/node_modules": true |
| 63 | + }, |
| 64 | + "go.lintTool": "golangci-lint", |
| 65 | + "go.lintFlags": ["--fast"], |
| 66 | + "go.lintOnSave": "package", |
| 67 | + "go.coverOnSave": true, |
| 68 | + // The codersdk is used by coderd another other packages extensively. |
| 69 | + // To reduce redundancy in tests, it's covered by other packages. |
| 70 | + "go.testFlags": ["-coverpkg=./.,github.com/coder/coder/codersdk"], |
| 71 | + "go.coverageDecorator": { |
| 72 | + "type": "gutter", |
| 73 | + "coveredHighlightColor": "rgba(64,128,128,0.5)", |
| 74 | + "uncoveredHighlightColor": "rgba(128,64,64,0.25)", |
| 75 | + "coveredBorderColor": "rgba(64,128,128,0.5)", |
| 76 | + "uncoveredBorderColor": "rgba(128,64,64,0.25)", |
| 77 | + "coveredGutterStyle": "blockgreen", |
| 78 | + "uncoveredGutterStyle": "blockred" |
| 79 | + }, |
| 80 | + // We often use a version of TypeScript that's ahead of the version shipped |
| 81 | + // with VS Code. |
| 82 | + "typescript.tsdk": "./site/node_modules/typescript/lib" |
80 | 83 | }
|
0 commit comments