2023-03-28 20:37:18 +08:00
|
|
|
{
|
2023-06-29 15:41:18 +08:00
|
|
|
"explorer.fileNesting.enabled": true,
|
|
|
|
"explorer.fileNesting.expand": false,
|
|
|
|
"explorer.fileNesting.patterns": {
|
|
|
|
"*.js": "$(capture).js.map, $(capture).*.js",
|
|
|
|
"*.ts": "$(capture).ts.map, $(capture).*.ts",
|
|
|
|
"*.tsx": "$(capture).tsx.map, $(capture).*.tsx",
|
|
|
|
".gitignore": ".gitattributes",
|
|
|
|
".eslintrc.js": ".eslintignore, .prettierignore, .prettierrc, commitlint.config.js",
|
|
|
|
"README.md": "*.md, LICENSE",
|
|
|
|
"tsconfig.json": "tsconfig.*.json, jsconfig.json",
|
|
|
|
"package.json": ".npmrc, pnpm-workspace.yaml, logo.svg, lerna.json"
|
|
|
|
},
|
2023-03-28 20:37:18 +08:00
|
|
|
"editor.quickSuggestions": {
|
|
|
|
"strings": true
|
|
|
|
},
|
|
|
|
"markdownlint.config": {
|
2023-05-18 16:57:25 +08:00
|
|
|
"no-inline-html": false,
|
|
|
|
"first-line-heading": false
|
2023-03-28 20:37:18 +08:00
|
|
|
},
|
|
|
|
"typescript.tsdk": "node_modules/typescript/lib",
|
|
|
|
"prettier.enable": true,
|
|
|
|
"editor.formatOnSave": true,
|
|
|
|
"editor.codeActionsOnSave": {
|
2023-12-15 14:52:50 +08:00
|
|
|
"source.fixAll.eslint": "explicit"
|
2023-03-28 20:37:18 +08:00
|
|
|
},
|
2024-05-10 14:33:17 +08:00
|
|
|
"stylelint.validate": [
|
|
|
|
"css",
|
|
|
|
"less",
|
|
|
|
"postcss",
|
|
|
|
"scss",
|
|
|
|
"sass"
|
|
|
|
],
|
2023-03-28 20:37:18 +08:00
|
|
|
"better-comments.highlightPlainText": true,
|
|
|
|
"better-comments.tags": [
|
|
|
|
{
|
|
|
|
"tag": "#v",
|
|
|
|
"color": "#FF8C00",
|
|
|
|
"strikethrough": false,
|
|
|
|
"underline": false,
|
|
|
|
"backgroundColor": "transparent",
|
|
|
|
"bold": false,
|
|
|
|
"italic": false
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"tag": "!",
|
|
|
|
"color": "#FF2D00",
|
|
|
|
"strikethrough": false,
|
|
|
|
"underline": false,
|
|
|
|
"backgroundColor": "transparent",
|
|
|
|
"bold": false,
|
|
|
|
"italic": false
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"tag": "?",
|
|
|
|
"color": "#3498DB",
|
|
|
|
"strikethrough": false,
|
|
|
|
"underline": false,
|
|
|
|
"backgroundColor": "transparent",
|
|
|
|
"bold": false,
|
|
|
|
"italic": false
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"tag": "//",
|
|
|
|
"color": "#474747",
|
|
|
|
"strikethrough": true,
|
|
|
|
"underline": false,
|
|
|
|
"backgroundColor": "transparent",
|
|
|
|
"bold": false,
|
|
|
|
"italic": false
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"tag": "todo",
|
|
|
|
"color": "#FF8C00",
|
|
|
|
"strikethrough": false,
|
|
|
|
"underline": false,
|
|
|
|
"backgroundColor": "transparent",
|
|
|
|
"bold": false,
|
|
|
|
"italic": false
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"tag": "*",
|
|
|
|
"color": "#98C379",
|
|
|
|
"strikethrough": false,
|
|
|
|
"underline": false,
|
|
|
|
"backgroundColor": "transparent",
|
|
|
|
"bold": false,
|
|
|
|
"italic": false
|
|
|
|
}
|
2023-10-11 19:02:39 +08:00
|
|
|
],
|
2023-10-23 10:53:42 +08:00
|
|
|
"vue.codeActions.enabled": false
|
2024-05-10 14:33:17 +08:00
|
|
|
}
|