forked from linear/linear
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlinear.code-workspace
More file actions
50 lines (50 loc) · 1.15 KB
/
linear.code-workspace
File metadata and controls
50 lines (50 loc) · 1.15 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
{
"launch": {
"configurations": [],
},
"tasks": {
"version": "2.0.0",
"tasks": [],
},
"folders": [
{
"path": "./",
},
],
"extensions": {
"recommendations": ["dbaeumer.vscode-eslint", "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": "explicit",
"source.organizeImports": "explicit"
},
"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,
},
"typescript.tsdk": "./node_modules/typescript/lib",
"typescript.enablePromptUseWorkspaceTsdk": true,
"cSpell.words": ["uuidv4"],
},
}