chore(husky): 增加husky git hook commitlint

This commit is contained in:
‘chen.home’ 2022-08-04 22:25:22 +08:00
parent 7b6408d1ca
commit aaf247bb73
15 changed files with 103 additions and 78 deletions

View File

@ -1,4 +1,5 @@
module.exports = { //https://eslint.org/docs/latest/
module.exports = {
//https://eslint.org/docs/latest/
root: true,
// 环境变量 https://eslint.org/docs/latest/user-guide/configuring/language-options#specifying-environments
env: {
@ -13,7 +14,7 @@ module.exports = { //https://eslint.org/docs/latest/
parserOptions: {
ecmaVersion: 12,
parser: '@typescript-eslint/parser',
sourceType: 'module'
sourceType: 'module',
},
// 想要Linting规则的插件 https://eslint.org/docs/latest/user-guide/configuring/plugins
plugins: ['vue', '@typescript-eslint', 'prettier'],
@ -24,12 +25,12 @@ module.exports = { //https://eslint.org/docs/latest/
'plugin:prettier/recommended',
'@vue/eslint-config-typescript/recommended',
'@vue/eslint-config-prettier',
'@vue/typescript/recommended'
'@vue/typescript/recommended',
],
rules: {
// TSESLint docs https://typescript-eslint.io/rules/
'no-var': 'error', // 禁止使用var
'no-console': 'warn', // 禁止出现console
"no-debugger": "off", // 关闭debugger警告
}
};
'no-debugger': 'off', // 关闭debugger警告
},
};

1
.gitignore vendored
View File

@ -15,6 +15,7 @@ dist-ssr
# Editor directories and files
.vscode/*
!.vscode/extensions.json
!.vscode/settings.json
.idea
.DS_Store
*.suo

4
.husky/commit-msg Normal file
View File

@ -0,0 +1,4 @@
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"
npx --no-install commitlint --edit "$1"

4
.husky/pre-commit Normal file
View File

@ -0,0 +1,4 @@
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"
npm run lint && npm run prettier

View File

@ -1,27 +1,21 @@
module.exports = { // https://prettier.io/docs/en/options.html
arrowParens: 'avoid',
// bracketSameLine: false,
// bracketSpacing: true,
// embeddedLanguageFormatting: 'auto',
// htmlWhitespaceSensitivity: 'css',
// insertPragma: false,
// jsxSingleQuote: false,
printWidth: 120,
// proseWrap: 'preserve',
// quoteProps: 'as-needed',
// requirePragma: false,
// semi: true,
singleQuote: true,
tabWidth: 2,
trailingComma: 'none',
// useTabs: false,
// vueIndentScriptAndStyle: false,
overrides: [
{
files: '*.html',
options: {
parser: 'html',
},
},
],
module.exports = {
// https://prettier.io/docs/en/options.html
printWidth: 80, //单行长度
tabWidth: 2, //缩进长度
useTabs: false, //使用空格代替tab缩进
semi: true, //句末使用分号
singleQuote: true, //使用单引号
quoteProps: 'as-needed', //仅在必需时为对象的key添加引号
jsxSingleQuote: true, // jsx中使用单引号
trailingComma: 'all', //多行时尽可能打印尾随逗号
bracketSpacing: true, //在对象前后添加空格-eg: { foo: bar }
jsxBracketSameLine: true, //多属性html标签的>’折行放置
arrowParens: 'always', //单参数箭头函数参数周围使用圆括号-eg: (x) => x
requirePragma: false, //无需顶部注释即可格式化
insertPragma: false, //在已被preitter格式化的文件顶部加上标注
proseWrap: 'preserve', //不知道怎么翻译
htmlWhitespaceSensitivity: 'ignore', //对HTML全局空白不敏感
vueIndentScriptAndStyle: false, //不对vue中的script及style标签缩进
endOfLine: 'lf', //结束行形式
embeddedLanguageFormatting: 'auto', //对引用代码进行格式化
};

20
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,20 @@
{
//
// "workbench.colorTheme": "Atom One Light",
//
"editor.tabSize": 2,
// eslint
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"eslint.format.enable": true,
//
"eslint.validate": ["typescript", "javascript", "vue", "html"],
"nuxt.isNuxtApp": false,
//
"eslint.alwaysShowStatus": true,
//
"eslint.options": { "configFile": ".eslintrc.js" },
//
"editor.formatOnSave": true
}

1
commitlint.config.js Normal file
View File

@ -0,0 +1 @@
module.exports = { extends: ['@commitlint/config-conventional'] };

View File

@ -1,13 +1,13 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/pixel.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Ench-Admin</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/pixel.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Ench-Admin</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>

View File

@ -2,16 +2,20 @@
"name": "enchadmin",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview"
"preview": "vite preview",
"prettier": "prettier --write \"src/**/*.{js,json,tsx,css,less,scss,vue,html,md}\"",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts,.json --fix",
"prepare": "husky install"
},
"dependencies": {
"vue": "^3.2.37"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"@vitejs/plugin-vue": "^3.0.0",
@ -23,9 +27,10 @@
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.3.0",
"husky": "^8.0.0",
"prettier": "^2.7.1",
"typescript": "^4.6.4",
"vite": "^3.0.0",
"vue-tsc": "^0.38.4"
}
}
}

View File

@ -5,21 +5,21 @@ import HelloWorld from './components/HelloWorld.vue';
</script>
<template>
<div>
<a href="https://vitejs.dev" target="_blank">
<img src="/pixel.svg" class="logo" />
</a>
</div>
<HelloWorld msg="Ench-Admin 中后台模板" />
<div>
<a href="https://vitejs.dev" target="_blank">
<img src="/pixel.svg" class="logo" />
</a>
</div>
<HelloWorld msg="Ench-Admin 中后台模板" />
</template>
<style scoped>
.logo {
height: 6em;
padding: 1.5em;
will-change: filter;
height: 6em;
padding: 1.5em;
will-change: filter;
}
.logo:hover {
filter: drop-shadow(0 0 2em #ed9d0aaa);
filter: drop-shadow(0 0 2em #ed9d0aaa);
}
</style>

View File

@ -1,9 +1,9 @@
<script setup lang="ts">
import { ref } from 'vue'
import { ref } from 'vue';
defineProps<{ msg: string }>()
defineProps<{ msg: string }>();
const count = ref(0)
const count = ref(0);
</script>
<template>
@ -13,15 +13,17 @@ const count = ref(0)
<button type="button" @click="count++">count is {{ count }}</button>
<p>
Edit
<code>components/HelloWorld.vue</code> to test HMR
<code>components/HelloWorld.vue</code>
to test HMR
</p>
</div>
<p>
Check out
<a href="https://vuejs.org/guide/quick-start.html#local" target="_blank"
>create-vue</a
>, the official Vue + Vite starter
<a href="https://vuejs.org/guide/quick-start.html#local" target="_blank">
create-vue
</a>
, the official Vue + Vite starter
</p>
<p>
Install

View File

@ -1,5 +1,5 @@
import { createApp } from 'vue'
import './style.css'
import App from './App.vue'
import { createApp } from 'vue';
import './style.css';
import App from './App.vue';
createApp(App).mount('#app')
createApp(App).mount('#app');

7
src/vite-env.d.ts vendored
View File

@ -1,7 +0,0 @@
/// <reference types="vite/client" />
declare module '*.vue' {
import type { DefineComponent } from 'vue'
const component: DefineComponent<{}, {}, any>
export default component
}

View File

@ -13,5 +13,5 @@
"lib": ["ESNext", "DOM"],
"skipLibCheck": true
},
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"],
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"]
}

View File

@ -1,7 +1,7 @@
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import { defineConfig } from 'vite';
import vue from '@vitejs/plugin-vue';
// https://vitejs.dev/config/
export default defineConfig({
plugins: [vue()]
})
plugins: [vue()],
});