專案程式碼同步至碼雲 weiz-vue3-template
要求程式碼規範,主要是為了提高多人協同和程式碼維護效率,結合到此專案,具體工作就是為專案配置eslint
和prettier
。
editorconfig
安裝 EditorConfig for VS Code
外掛,根目錄下新建 .editorconfig
檔案,增加以下配置
[*.{js,jsx,ts,tsx,vue}]
indent_style = space
indent_size = 2
end_of_line = crlf
trim_trailing_whitespace = true
insert_final_newline = true
max_line_length = 120
如果是非windows系統,end_of_line
設定為 cr
eslint
安裝可以參考官方教程 vue.js程式碼規範。
在這裡,我們建議使用另一種方式,安裝後,透過命令初始化。
1. 安裝
npm i eslint -D
2. 初始化
npm init @eslint/config
以下是操作例項:
PS D:\workspace\vue3\weiz-vue3-template> npm init @eslint/config
Need to install the following packages:
@eslint/create-config@0.4.6
Ok to proceed? (y)
# 輸入y開始安裝
? How would you like to use ESLint? ... # 如何使用eslint
To check syntax only
To check syntax and find problems
> To check syntax, find problems, and enforce code style # 檢查語法、發現問題並強制執行程式碼風格
# 選擇第三項
? What type of modules does your project use? ... # 專案使用哪種型別的模組
> JavaScript modules (import/export)
CommonJS (require/exports)
None of these
# 選擇第一項
? Which framework does your project use? ... # 使用哪種框架
React
> Vue.js
None of these
# 選擇 vue
? Does your project use TypeScript? » No / Yes # 專案裡是否使用了ts
# 選擇yes
? Where does your code run? ... (Press <space> to select, <a> to toggle all, <i> to invert selection)
# 程式碼執行環境,輸入空格選擇,可以多選
√ Browser
√ Node
# 都選中後回車
Use a popular style guide # 使用一種流行的風格指南
> Answer questions about your style # 自定義你的style
# 選擇第二項
? What format do you want your config file to be in? ... # 你的config配置檔案型別
> JavaScript
YAML
JSON
# 建議選擇js
? What style of indentation do you use? ... # 使用什麼樣的縮排風格
Tabs
> Spaces
# 建議空格
? What quotes do you use for strings? ... # 字串使用單引號還是雙引號
Double
> Single
# 單引號
? What line endings do you use? ... # 行尾格式
Unix
> Windows
# Windows,如果是非windows系統,選擇 unix
? Do you require semicolons? » No / Yes # 是否需要分號
# No
@typescript-eslint/eslint-plugin@latest eslint-plugin-vue@latest @typescript-eslint/parser@latest eslint@latest
? Would you like to install them now? » No / Yes
# 檢查後列出以上專案,選擇yes安裝
? Which package manager do you want to use? ... # 使用哪種安裝方式
> npm
yarn
pnpm
# 選擇npm,然後等待安裝完成
...
added 138 packages, changed 1 package, and audited 184 packages in 50s
39 packages are looking for funding
run `npm fund` for details
found 0 vulnerabilities
Successfully created .eslintrc.cjs file in D:\workspace\vue3\weiz-vue3-template
安裝完成,在根目錄下生成了 .eslintrc.cjs
檔案,並自帶一些我們選擇的配置。
3. 簡易安裝
透過以上安裝我們發現,最終還是安裝了4個依賴,@typescript-eslint/eslint-plugin@latest eslint-plugin-vue@latest @typescript-eslint/parser@latest eslint@latest
,如果我們熟悉的話,後續就可以直接安裝
npm i @typescript-eslint/eslint-plugin@latest eslint-plugin-vue@latest @typescript-eslint/parser@latest eslint@latest -D
然後在根目錄下新建 .eslintrc.cjs
,然後把我們常用的配置複製進去即可。
4. .eslintrc.cjs
配置
以下附帶基礎配置:
module.exports = {
env: {
browser: true,
es2021: true,
node: true
},
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
'plugin:vue/vue3-essential',
'plugin:prettier/recommended' // 後續相容prettier
],
overrides: [
{
env: {
node: true
},
files: ['.eslintrc.{js,cjs}'],
parserOptions: {
sourceType: 'script'
}
}
],
parserOptions: {
ecmaVersion: 'latest',
parser: '@typescript-eslint/parser',
sourceType: 'module'
},
plugins: ['@typescript-eslint', 'vue'],
rules: {
indent: ['error', 2],
'linebreak-style': ['error', 'windows'],
quotes: ['error', 'single'],
semi: ['error', 'never']
}
}
5. .eslintignore
根目錄下新建 .eslintignore
檔案,增加需要忽略型別檢查的檔案和目錄
node_modules
dist
public
*.md
*.txt
.vscode
index.html
6. 增加命令
修改 package.json
"scripts": {
"lint": "eslint --fix --ext .ts,.tsx,.vue,.js,.jsx --max-warnings 0"
}
執行 `npm run lint`,即可修復相關程式碼問題
prettier
prettier
是為了方便格式化程式碼,它的安裝比較簡單,後兩個依賴是為了解決和 eslint
的衝突
1. 安裝
npm i prettier eslint-config-prettier eslint-plugin-prettier -D
2. .prettierrc
根目錄下新建 .prettierrc
檔案,並增加以下配置
{
"useTabs": false,
"tabWidth": 2,
"printWidth": 120,
"singleQuote": true,
"trailingComma": "none",
"bracketSpacing": true,
"semi": false,
"endOfLine": "crlf"
}
如果是非windows,endOfLine
設定為 cr
3. .prettierignore
根目錄下新建 .prettierignore
檔案,增加需要忽略格式化的檔案和目錄
node_modules
dist
public
*.md
*.txt
.vscode
index.html
總結
做好以上配置後,可以執行 npm run lint
修復大部分程式碼格式問題,或者右鍵使用 prettier
格式化程式碼,將大大提高你的編碼效率。