Skip to content

Commit

Permalink
feat: add JSON schemas to vscode config, remove subjective settings
Browse files Browse the repository at this point in the history
  • Loading branch information
GeekyEggo committed Aug 13, 2024
1 parent 843f3db commit 4b4d876
Showing 1 changed file with 15 additions and 12 deletions.
27 changes: 15 additions & 12 deletions template/.vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
{
/* Prefer tabs over spaces for accessibility */
"editor.insertSpaces": false,
"editor.detectIndentation": false,
/* Explorer */
"explorer.fileNesting.enabled": true,
"explorer.fileNesting.patterns": {
"*.js": "${capture}.js.map, ${capture}.min.js, ${capture}.d.ts",
"package.json": "package-lock.json, yarn.lock, pnpm-lock.yaml, rollup.config.mjs, tsconfig.json"
},
"files.exclude": {
"node_modules": true
}
/* JSON schemas */
"json.schemas": [
{
"fileMatch": [
"*/manifest.json"
],
"url": "https://schemas.elgato.com/streamdeck/plugins/manifest.json"
},
{
"fileMatch": [
"*/layouts/*.json"
],
"url": "https://schemas.elgato.com/streamdeck/plugins/layout.json"
}
]
}

0 comments on commit 4b4d876

Please sign in to comment.