25 lines
584 B
JSON
25 lines
584 B
JSON
{
|
|
"eslint.validate": ["javascript", "typescript", "svelte"],
|
|
"editor.formatOnSave": true,
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll.eslint": "explicit"
|
|
},
|
|
"npm.packageManager": "pnpm",
|
|
"npm.scriptExplorerAction": "run",
|
|
"npm.enableRunFromFolder": true,
|
|
"npm.scriptExplorerExclude": [
|
|
"build.*",
|
|
"publish.*",
|
|
"startup.*",
|
|
"stories:autolink",
|
|
"stories:unconfig",
|
|
"knip",
|
|
"test",
|
|
"lint",
|
|
"format"
|
|
],
|
|
"liveshare.launcherClient": "visualStudioCode",
|
|
"[svelte]": {
|
|
"editor.defaultFormatter": "svelte.svelte-vscode"
|
|
}
|
|
}
|