Podcast player components (#37)

This commit is contained in:
Ollie Taylor
2023-03-06 15:25:34 +00:00
committed by GitHub
parent 47aabda96d
commit 9232f4d52e
37 changed files with 1375 additions and 156 deletions
+1
View File
@@ -2,6 +2,7 @@
// See http://go.microsoft.com/fwlink/?LinkId=827846
// for the documentation about the extensions.json format
"recommendations": [
"dbaeumer.vscode-eslint",
"aaron-bond.better-comments",
"esbenp.prettier-vscode",
"gruntfuggly.todo-tree"
+4 -1
View File
@@ -7,6 +7,7 @@
"source.organizeImports": true
},
"eslint.packageManager": "pnpm",
"eslint.validate": ["javascript", "javascriptreact", "typescript", "typescriptreact", "svelte"],
"files.exclude": {
"**/.DS_Store": true,
"**/*-lock.*": true,
@@ -21,5 +22,7 @@
"**/.svelte-kit": true
},
"problems.sortOrder": "severity",
"todo-tree.tree.scanMode": "workspace only"
"todo-tree.tree.scanMode": "workspace only",
"javascript.preferences.importModuleSpecifier": "relative",
"typescript.preferences.importModuleSpecifier": "relative"
}