forked from linear/linear
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlinear.code-workspace
54 lines (54 loc) · 1.29 KB
/
linear.code-workspace
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
{
"launch": {
"configurations": []
},
"tasks": {
"version": "2.0.0",
"tasks": []
},
"folders": [
{
"path": "./"
}
],
"extensions": {
"recommendations": ["dbaeumer.vscode-eslint", "christian-kohler.path-intellisense", "esbenp.prettier-vscode"]
},
"settings": {
"editor.tabSize": 2,
"editor.formatOnSave": true,
"search.exclude": {
"**/bower_components": true,
"**/build": true,
"**/node_modules": true,
"**/.rollup.cache": true,
"**/*.tsbuildinfo": true
},
"editor.rulers": [120],
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
"source.organizeImports": true
},
"files.exclude": {
"**/.cache": true,
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/build": true,
"**/dist": true,
"**/node_modules": true,
"**/.rollup.cache": true,
"**/*.tsbuildinfo": true,
"**/.size-snapshot.json": true
},
"gitlens.advanced.messages": {
"suppressShowKeyBindingsNotice": true
},
"gitlens.hovers.currentLine.over": "line",
"gitlens.codeLens.enabled": false,
"gitlens.currentLine.enabled": false,
"typescript.tsdk": "node_modules/typescript/lib"
}
}