You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

153 lines
3.5 KiB

2 years ago
{
"typescript.tsdk": "./node_modules/typescript/lib",
"npm.packageManager": "pnpm",
"editor.tabSize": 2,
"files.eol": "\n",
"search.exclude": {
"**/node_modules": true,
"**/*.log": true,
"**/*.log*": true,
"**/bower_components": true,
"**/dist": true,
"**/elehukouben": true,
"**/.git": true,
"**/.gitignore": true,
"**/.svn": true,
"**/.DS_Store": true,
"**/.idea": true,
"**/.vscode": false,
"**/yarn.lock": true,
"pnpm-lock.yaml": true,
2 years ago
"**/tmp": true,
"out": true,
"dist": true,
"public": true,
2 years ago
"node_modules": true,
"CHANGELOG.md": true,
"examples": true,
"res": true,
"screenshots": true,
"yarn-error.log": true,
"**/.yarn": true
},
"files.exclude": {
"**/.cache": true,
"**/.editorconfig": true,
"**/.eslintcache": true,
"**/bower_components": true,
"**/.idea": true,
"**/tmp": true,
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true
},
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/.vscode/**": true,
"**/node_modules/**": true,
"**/tmp/**": true,
"**/bower_components/**": true,
"**/dist/**": true,
"**/yarn.lock": true
},
"path-intellisense.mappings": {
"@/": "${workspaceRoot}/src"
},
"prettier.enable": false,
"eslint.experimental.useFlatConfig": true,
2 years ago
"editor.formatOnSave": false,
2 years ago
"editor.codeActionsOnSave": {
"source.fixAll": "explicit",
"source.organizeImports": "never"
2 years ago
},
"eslint.rules.customizations": [
{ "rule": "style/*", "severity": "off" },
{ "rule": "*-indent", "severity": "off" },
{ "rule": "*-spacing", "severity": "off" },
{ "rule": "*-spaces", "severity": "off" },
{ "rule": "*-order", "severity": "off" },
{ "rule": "*-dangle", "severity": "off" },
{ "rule": "*-newline", "severity": "off" },
{ "rule": "*quotes", "severity": "off" },
{ "rule": "*semi", "severity": "off" }
],
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact",
"vue",
"html",
"markdown",
"json",
"jsonc",
"yaml"
],
2 years ago
"[vue]": {
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit",
"source.organizeImports": "never",
"source.fixAll.stylelint": "explicit"
2 years ago
}
},
"i18n-ally.localesPaths": ["src/locales/lang"],
"i18n-ally.keystyle": "nested",
"i18n-ally.sortKeys": true,
"i18n-ally.namespace": true,
"i18n-ally.pathMatcher": "{locale}/{namespaces}.{ext}",
"i18n-ally.enabledParsers": ["json"],
2 years ago
"i18n-ally.sourceLanguage": "en",
"i18n-ally.displayLanguage": "zh-CN",
"i18n-ally.enabledFrameworks": ["vue", "react"],
"cSpell.words": [
"antd",
"antdv",
2 years ago
"antfu",
"antv",
"brotli",
2 years ago
"browserslist",
2 years ago
"Cascader",
"codemirror",
"commitlint",
"cropperjs",
"echarts",
2 years ago
"esnext",
"esno",
"iconify",
2 years ago
"Inited",
"INTLIFY",
"lintstagedrc",
"logicflow",
"nprogress",
"picocolors",
2 years ago
"pinia",
"pnpm",
"qrcode",
2 years ago
"sider",
"sortablejs",
"stylelint",
2 years ago
"svgs",
"tailwind",
"tailwindcss",
"tinymce",
"unocss",
"unref",
"vben",
2 years ago
"vditor",
"videojs",
"vitejs",
"vuedraggable",
2 years ago
"vueuse",
"xingyuv",
"yudao",
"zxcvbn"
2 years ago
],
"eslint.codeAction.showDocumentation": {
"enable": true
2 years ago
},
"terminal.integrated.scrollback": 10000
2 years ago
}