mirror of
https://github.com/netbymatt/ws4kp.git
synced 2026-04-14 07:39:29 -07:00
- Reformat index.mjs - Don't preload playlist.json to avoid Safari warning about unused preloaded resource
86 lines
1.6 KiB
Plaintext
86 lines
1.6 KiB
Plaintext
{
|
|
"folders": [
|
|
{
|
|
"path": "."
|
|
}
|
|
],
|
|
"settings": {
|
|
"search.exclude": {
|
|
"**/*.code-search": true,
|
|
"**/*.css": true,
|
|
"**/*.min.js": true,
|
|
"**/bower_components": true,
|
|
"**/node_modules": true,
|
|
"**/vendor": true,
|
|
"dist/**": 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"
|
|
],
|
|
"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"
|
|
}
|
|
},
|
|
"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",
|
|
]
|
|
}
|
|
}
|