-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.json
65 lines (65 loc) · 1.99 KB
/
settings.json
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
{
"javascript.validate.enable": false,
"eslint.nodePath": "/Users/mglidden/tulip/tulip/environments/node_modules",
"eslint.runtime": "{/Users/mglidden/.tulip-nvm/versions/node/{{node version}}/bin/node",
"eslint.options": {
"rulePaths": [ "/Users/mglidden/tulip/tulip/tools/eslint-rules/lib/rules" ],
"ignorePath": "/Users/mglidden/tulip/tulip/environments/.eslintignore"
},
"workbench.colorTheme": "Monokai",
"editor.acceptSuggestionOnEnter": "smart",
"editor.wordBasedSuggestions": false,
"editor.rulers": [
100,
120
],
"editor.tabSize": 2,
"editor.minimap.enabled": true,
"editor.renderWhitespace": "boundary",
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
"files.exclude": {
"**/.git": true,
"**/.DS_Store": true,
"**/.meteor/local": true
},
"flow.useLSP": true,
"flow.useNPMPackagedFlow": true,
"workbench.colorCustomizations": {
"editorWarning.foreground": "#FFF000",
"editorWarning.border": "#BBB000",
"editorError.foreground": "#FF0000",
"editorError.border": "#BB0000"
},
"tslint.configFile": "/Users/mglidden/tulip/tulip/environments/tslint.json",
"[typescript]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescriptreact]": {
"editor.formatOnSave": true
},
"go.toolsGopath": "/Users/mglidden/go",
"go.inferGopath": false,
"go.testFlags": [
"-v",
"-race"
],
"go.coverOnSingleTest": true,
"go.testTimeout": "60s",
"go.lintTool": "golangci-lint",
"go.lintFlags": [
"--fast"
],
"go.lintOnSave": "package",
"go.liveErrors": {
"enabled": false,
"delay": 500
},
"go.formatTool": "goimports",
"go.formatFlags": ["-local", "tulip/"],
"go.testEnvVars": {
"GIN_MODE": "test",
},
"editor.defaultFormatter": "esbenp.prettier-vscode",
}