gf-vben-admin/.vscode/settings.json

140 lines
3.2 KiB
JSON
Raw Normal View History

2020-10-09 23:22:55 +08:00
{
"typescript.tsdk": "./node_modules/typescript/lib",
2021-02-17 22:07:22 +08:00
"volar.tsPlugin": true,
"volar.tsPluginStatus": false,
2021-11-10 22:12:10 +08:00
"npm.packageManager": "pnpm",
"editor.tabSize": 2,
2021-03-09 23:01:32 +08:00
"editor.defaultFormatter": "esbenp.prettier-vscode",
"files.eol": "\n",
2020-10-09 23:22:55 +08:00
"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,
2020-12-02 21:11:37 +08:00
"**/tmp": true,
"out": true,
"dist": true,
"node_modules": true,
"CHANGELOG.md": true,
"examples": true,
"res": true,
2021-06-17 21:43:53 +08:00
"screenshots": true,
"yarn-error.log": true,
"**/.yarn": true
2020-10-09 23:22:55 +08:00
},
"files.exclude": {
2021-06-17 21:43:53 +08:00
"**/.cache": true,
"**/.editorconfig": true,
"**/.eslintcache": true,
2020-10-09 23:22:55 +08:00
"**/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
},
"stylelint.enable": true,
2022-03-19 06:49:33 +08:00
"stylelint.validate": ["css", "less", "postcss", "scss", "vue", "sass"],
2020-10-09 23:22:55 +08:00
"path-intellisense.mappings": {
"/@/": "${workspaceRoot}/src"
},
"[javascriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[css]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[less]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[scss]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[markdown]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
2020-12-01 23:51:39 +08:00
},
"[vue]": {
"editor.codeActionsOnSave": {
2022-03-19 06:49:33 +08:00
"source.fixAll.eslint": true,
"source.fixAll.stylelint": true
}
},
"i18n-ally.localesPaths": ["src/locales/lang"],
2020-12-01 23:51:39 +08:00
"i18n-ally.keystyle": "nested",
"i18n-ally.sortKeys": true,
"i18n-ally.namespace": true,
2020-12-02 21:11:37 +08:00
"i18n-ally.pathMatcher": "{locale}/{namespaces}.{ext}",
"i18n-ally.enabledParsers": ["ts"],
2021-03-09 23:03:32 +08:00
"i18n-ally.sourceLanguage": "en",
"i18n-ally.displayLanguage": "zh-CN",
2021-06-17 21:43:53 +08:00
"i18n-ally.enabledFrameworks": ["vue", "react"],
"cSpell.words": [
"vben",
"windi",
"browserslist",
"tailwindcss",
"esnext",
"antv",
"tinymce",
"qrcode",
"sider",
"pinia",
"sider",
2021-07-19 23:54:47 +08:00
"nprogress",
"INTLIFY",
"stylelint",
"esno",
"vitejs",
"sortablejs",
"mockjs",
"codemirror",
"iconify",
"commitlint",
"vditor",
"echarts",
"cropperjs",
"logicflow",
"vueuse",
"zxcvbn",
"lintstagedrc",
"brotli",
"tailwindcss",
"sider",
"pnpm",
"antd"
]
}