forked from netbymatt/ws4kp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathws4kp.code-workspace
More file actions
92 lines (92 loc) · 1.72 KB
/
Copy pathws4kp.code-workspace
File metadata and controls
92 lines (92 loc) · 1.72 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"folders": [
{
"path": "."
}
],
"settings": {
"search.exclude": {
"**/*.code-search": true,
"**/*.css": true,
"**/*.min.js": true,
"**/bower_components": true,
"**/node_modules": true,
"**/vendor": true,
"dist/**": true,
"package-lock.json": true,
},
"cSpell.enabledFileTypes": {
"markdown": true,
"JavaScript": true
},
"cSpell.enabled": true,
"cSpell.ignoreWords": [
"'storm",
"arcgis",
"Battaglia",
"devbridge",
"gifs",
"ltrim",
"mbar",
"Noaa",
"nosleep",
"Pngs",
"PRECIP",
"rtrim",
"sonarjs",
"T",
"T'storm",
"uscomp",
"Visib",
"Waukegan",
"WSQS",
"Tucsan",
"Malek",
"mwood",
"unmuted",
"dumpio",
"mesonet",
"metar",
"Unmute"
],
"cSpell.ignorePaths": [
"**/package-lock.json",
"**/node_modules/**",
"**/vscode-extension/**",
"**/.git/objects/**",
".vscode",
".vscode-insiders",
"**/vendor/auto/**",
],
"editor.tabSize": 2,
"editor.insertSpaces": false, // .eslintrc wants tabs instead of spaces
"emmet.includeLanguages": {
"ejs": "html",
},
"[ejs]": {
"editor.occurrencesHighlight": "off",
"editor.defaultFormatter": "j69.ejs-beautify"
},
"files.exclude": {},
"files.eol": "\n",
"files.associations": {
"*.ejs": "ejs"
},
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit"
},
"cSpell.words": [
"hibyehihi",
"zakj"
]
},
"extensions": {
"recommendations": [
"digitalbrainstem.javascript-ejs-support", // EJS (Embedded JavaScript) template language support
"dbaeumer.vscode-eslint", // ESLint JavaScript linting integration
"streetsidesoftware.code-spell-checker",
"j69.ejs-beautify",
]
}
}