Merge branch 'main' into player-component
This commit is contained in:
Vendored
+9
@@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
// See http://go.microsoft.com/fwlink/?LinkId=827846
|
||||||
|
// for the documentation about the extensions.json format
|
||||||
|
"recommendations": [
|
||||||
|
"aaron-bond.better-comments",
|
||||||
|
"esbenp.prettier-vscode",
|
||||||
|
"gruntfuggly.todo-tree"
|
||||||
|
]
|
||||||
|
}
|
||||||
Vendored
+25
@@ -0,0 +1,25 @@
|
|||||||
|
{
|
||||||
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
||||||
|
"editor.formatOnType": false,
|
||||||
|
"editor.formatOnSave": true,
|
||||||
|
"editor.codeActionsOnSave": {
|
||||||
|
"source.fixAll.eslint": true,
|
||||||
|
"source.organizeImports": true
|
||||||
|
},
|
||||||
|
"eslint.packageManager": "yarn",
|
||||||
|
"files.exclude": {
|
||||||
|
"**/.DS_Store": true,
|
||||||
|
"**/*-lock.*": true,
|
||||||
|
"**/*.Identifier": true,
|
||||||
|
"**/.vercel": true,
|
||||||
|
"**/node_modules": true,
|
||||||
|
"**/tsconfig.tsbuildinfo": true,
|
||||||
|
"**/.npmrc": true
|
||||||
|
},
|
||||||
|
"files.watcherExclude": {
|
||||||
|
"**/node_modules": true,
|
||||||
|
"**/.svelte-kit": true
|
||||||
|
},
|
||||||
|
"problems.sortOrder": "severity",
|
||||||
|
"todo-tree.tree.scanMode": "workspace only"
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user