mirror of
https://github.com/vbenjs/vue-vben-admin.git
synced 2025-08-26 08:36:19 +08:00
chore: add .github and .vscode
This commit is contained in:
12
.vscode/extensions.json
vendored
Normal file
12
.vscode/extensions.json
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"recommendations": [
|
||||
"octref.vetur",
|
||||
"dariofuzinato.vue-peek",
|
||||
"dbaeumer.vscode-eslint",
|
||||
"stylelint.vscode-stylelint",
|
||||
"DavidAnson.vscode-markdownlint",
|
||||
"esbenp.prettier-vscode",
|
||||
"mrmlnc.vscode-scss",
|
||||
"Orta.vscode-jest"
|
||||
]
|
||||
}
|
48
.vscode/launch.json
vendored
Normal file
48
.vscode/launch.json
vendored
Normal file
@@ -0,0 +1,48 @@
|
||||
{
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
// node环境调试当前激活编辑器ts/js代码
|
||||
{
|
||||
"type": "node",
|
||||
"request": "launch",
|
||||
"name": "file",
|
||||
"cwd": "${workspaceFolder}",
|
||||
"program": "${file}",
|
||||
// .vscode 目录又不认识了???
|
||||
"preLaunchTask": "tsc: 监视 - build/tsconfig.json", // cn
|
||||
// "preLaunchTask": "tsc: watch - build/tsconfig.json", // en
|
||||
"outFiles": ["${workspaceFolder}/compile/**/*.js"]
|
||||
// "args": ["--experimental-modules", "--loader", "./loader.mjs"]
|
||||
},
|
||||
// 调试开发环境脚本
|
||||
{
|
||||
"type": "node",
|
||||
"request": "launch",
|
||||
"name": "dev",
|
||||
// "stopOnEntry": true,
|
||||
"cwd": "${workspaceFolder}",
|
||||
"program": "${workspaceFolder}/node_modules/@vue/cli-service/bin/vue-cli-service.js",
|
||||
"args": ["serve", "--open"]
|
||||
},
|
||||
// 调试生产环境脚本
|
||||
{
|
||||
"type": "node",
|
||||
"request": "launch",
|
||||
"name": "build",
|
||||
// "stopOnEntry": true,
|
||||
"cwd": "${workspaceFolder}",
|
||||
"program": "${workspaceFolder}/node_modules/@vue/cli-service/bin/vue-cli-service.js",
|
||||
"args": ["build"]
|
||||
},
|
||||
// 调试单元测试脚本
|
||||
{
|
||||
"type": "node",
|
||||
"request": "launch",
|
||||
"name": "test:unit",
|
||||
// "stopOnEntry": true,
|
||||
"cwd": "${workspaceFolder}",
|
||||
"program": "${workspaceFolder}/node_modules/@vue/cli-service/bin/vue-cli-service.js",
|
||||
"args": ["test:unit", "--detectOpenHandles"]
|
||||
}
|
||||
]
|
||||
}
|
251
.vscode/settings.json
vendored
Normal file
251
.vscode/settings.json
vendored
Normal file
@@ -0,0 +1,251 @@
|
||||
{
|
||||
"typescript.tsdk": "./node_modules/typescript/lib",
|
||||
//===========================================
|
||||
//============= Editor ======================
|
||||
//===========================================
|
||||
"explorer.openEditors.visible": 0,
|
||||
"editor.minimap.renderCharacters": false,
|
||||
"editor.minimap.maxColumn": 300,
|
||||
"editor.minimap.showSlider": "always",
|
||||
"editor.smoothScrolling": true,
|
||||
"editor.cursorBlinking": "phase",
|
||||
"editor.cursorSmoothCaretAnimation": true,
|
||||
"editor.detectIndentation": false, // vscode默认启用了根据文件类型自动设置tabsize的选项
|
||||
"diffEditor.ignoreTrimWhitespace": false,
|
||||
"editor.formatOnPaste": true, //自动格式化粘贴的内容
|
||||
"editor.formatOnSave": true, //保存自动格式化
|
||||
"editor.suggestSelection": "first",
|
||||
"editor.trimAutoWhitespace": true,
|
||||
"editor.quickSuggestions": {
|
||||
// 快速提示
|
||||
"other": true,
|
||||
"comments": true,
|
||||
"strings": true
|
||||
},
|
||||
//===========================================
|
||||
//============= Other =======================
|
||||
//===========================================
|
||||
"breadcrumbs.enabled": true, // 启用/禁用导航路径
|
||||
"open-in-browser.default": "chrome", // 默认浏览器
|
||||
//===========================================
|
||||
//============= emmet =======================
|
||||
//===========================================
|
||||
"emmet.triggerExpansionOnTab": true, // 配置emmet是否启用tab展开缩写
|
||||
"emmet.showAbbreviationSuggestions": true,
|
||||
"emmet.showExpandedAbbreviation": "always",
|
||||
"emmet.syntaxProfiles": {
|
||||
// 配置emmet对文件类型的支持,比如vue后缀文件按照html文件来进行emmet扩写
|
||||
"vue-html": "html",
|
||||
"vue": "html",
|
||||
"javascript": "javascriptreact",
|
||||
// xml类型文件默认都是单引号,开启对非单引号的emmet识别
|
||||
"xml": {
|
||||
"attr_quotes": "single"
|
||||
}
|
||||
},
|
||||
"emmet.includeLanguages": {
|
||||
// 在react的jsx中添加对emmet的支持
|
||||
"jsx-sublime-babel-tags": "javascriptreact"
|
||||
},
|
||||
//===========================================
|
||||
//============= files =======================
|
||||
//===========================================
|
||||
// "files.autoSave": "onWindowChange", // 窗口失去焦点自动保存
|
||||
// "files.autoSaveDelay": 1000, // 自动保存时间
|
||||
"files.trimTrailingWhitespace": true, // 启用后,将在保存文件时剪裁尾随空格。
|
||||
// 文件末尾插入新行
|
||||
"files.insertFinalNewline": true,
|
||||
// 删除文件末尾多余的新行
|
||||
"files.trimFinalNewlines": true,
|
||||
"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,
|
||||
"**/tmp": true
|
||||
},
|
||||
"files.exclude": {
|
||||
// 排除文件搜索区域,比如node_modules(默认设置已经屏蔽了)
|
||||
// "**/node_modules": true,
|
||||
"**/bower_components": true,
|
||||
"**/.idea": true,
|
||||
"**/yarn.lock": 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
|
||||
},
|
||||
"files.associations": {
|
||||
// 配置文件关联,以便启用对应的智能提示,比如wxss使用css
|
||||
"*.vue": "vue",
|
||||
"*.wxss": "css"
|
||||
},
|
||||
"stylelint.enable": true,
|
||||
"stylelint.packageManager": "yarn",
|
||||
"css.validate": true,
|
||||
"less.validate": true,
|
||||
"scss.validate": true,
|
||||
// ↓↓↓↓↓↓↓↓↓↓↓↓↓ 以下为插件设置 ↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓
|
||||
// ↓↓↓↓↓↓↓↓↓↓↓↓↓ 需要安装对应的插件 ↓↓↓↓↓↓↓↓↓↓↓↓
|
||||
// ↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓
|
||||
// ===========================================
|
||||
// ================ Eslint ===================
|
||||
// ===========================================
|
||||
"eslint.enable": true, // 是否开启eslint
|
||||
|
||||
"eslint.options": {
|
||||
// 配置
|
||||
"plugins": ["html", "vue", "javascript", "jsx", "typescript"]
|
||||
},
|
||||
"eslint.autoFixOnSave": true, // 保存自动格式化
|
||||
// ===========================================
|
||||
// ================ Vetur ====================
|
||||
// ===========================================
|
||||
"vetur.format.options.tabSize": 2,
|
||||
"vetur.format.defaultFormatter.html": "js-beautify-html", // 使用js-beautify-html格式化
|
||||
"vetur.format.defaultFormatter.scss": "prettier", // 使用js-beautify-html格式化
|
||||
"vetur.format.defaultFormatter.css": "prettier", // 使用js-beautify-html格式化
|
||||
// "vetur.format.defaultFormatter.html": "prettyhtml",
|
||||
"vetur.format.defaultFormatter.js": "prettier",
|
||||
// "vetur.useWorkspaceDependencies": true,
|
||||
"vetur.format.defaultFormatterOptions": {
|
||||
"js-beautify-html": {
|
||||
// "wrap_attributes": "force-aligned", // 单行
|
||||
"wrap_attributes": "force-expand-multiline" // 属性强制折行对齐 多行
|
||||
},
|
||||
"prettier": {
|
||||
"eslintIntegration": true, // 让perttier使用eslint的格式进行检查
|
||||
"arrowParens": "always", // 箭头函数参数括号 默认avoid 可选 avoid | always
|
||||
"semi": false, // 使用分号, 默认true
|
||||
"singleQuote": true // 使用单引号, 默认false(在jsx中配置无效, 默认都是双引号)
|
||||
}
|
||||
},
|
||||
// ===========================================
|
||||
// ============= Material Icon Theme =========
|
||||
// ===========================================
|
||||
"workbench.iconTheme": "material-icon-theme", // 主题色
|
||||
// ===========================================
|
||||
// ============= stylus Supremacy ============
|
||||
// ===========================================
|
||||
"stylusSupremacy.insertColons": false, // 是否插入冒号
|
||||
"stylusSupremacy.insertSemicolons": false, // 是否插入分号
|
||||
"stylusSupremacy.insertBraces": false, // 是否插入大括号
|
||||
//===========================================
|
||||
//============= koroFileHeaders ===============
|
||||
//===========================================
|
||||
"fileheader.configObj": {
|
||||
"autoAdd": false // 将该选项设置为true即可开启
|
||||
},
|
||||
// 函数注释
|
||||
//===========================================
|
||||
//============= Code Runner =================
|
||||
//===========================================
|
||||
"javascript.updateImportsOnFileMove.enabled": "never",
|
||||
"liveServer.settings.donotShowInfoMsg": true,
|
||||
"[javascript]": {
|
||||
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
||||
},
|
||||
"terminal.integrated.rendererType": "dom", //关闭liveserver提示
|
||||
"telemetry.enableCrashReporter": false,
|
||||
"telemetry.enableTelemetry": false,
|
||||
"workbench.settings.enableNaturalLanguageSearch": false,
|
||||
// 引用路径设置
|
||||
"path-intellisense.mappings": {
|
||||
"/@/": "${workspaceRoot}/src"
|
||||
},
|
||||
"prettier.requireConfig": true,
|
||||
"typescript.updateImportsOnFileMove.enabled": "always",
|
||||
"workbench.sideBar.location": "left",
|
||||
"cSpell.enabledLanguageIds": [
|
||||
"asciidoc",
|
||||
"c",
|
||||
"cpp",
|
||||
"csharp",
|
||||
"css",
|
||||
"git-commit",
|
||||
"go",
|
||||
"handlebars",
|
||||
"haskell",
|
||||
"html",
|
||||
"jade",
|
||||
"java",
|
||||
"javascript",
|
||||
"javascriptreact",
|
||||
"json",
|
||||
"jsonc",
|
||||
"latex",
|
||||
"less",
|
||||
"markdown",
|
||||
"php",
|
||||
"plaintext",
|
||||
"pug",
|
||||
"python",
|
||||
"restructuredtext",
|
||||
"rust",
|
||||
"scala",
|
||||
"scss",
|
||||
"text",
|
||||
"typescript",
|
||||
"typescriptreact",
|
||||
"yaml",
|
||||
"yml"
|
||||
],
|
||||
"[javascriptreact]": {
|
||||
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
||||
},
|
||||
"[typescript]": {
|
||||
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
||||
},
|
||||
"[typescriptreact]": {
|
||||
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
||||
},
|
||||
"[json]": {
|
||||
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
||||
},
|
||||
"[jsonc]": {
|
||||
"editor.defaultFormatter": "vscode.json-language-features"
|
||||
},
|
||||
"[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"
|
||||
},
|
||||
"cSpell.words": ["yfboilerplate"],
|
||||
"editor.codeActionsOnSave": {
|
||||
"source.fixAll.eslint": true
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user