1
0
mirror of https://github.com/PanJiaChen/vue-element-admin.git synced 2025-08-12 14:24:34 +08:00
Yamel Senih f45a57178a
Feature/#doc add documentation (#798)
* Add support to x vversion from npm

* Add support to x vversion from npm

* Add support to x vversion from npm

* Add documentation for current repository
2021-04-29 12:23:48 -04:00

77 lines
3.3 KiB
Markdown
Executable File
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# ESLint
不管是多人合作还是个人项目,代码规范都是很重要的。这样做不仅可以很大程度地避免基本语法错误,也保证了代码的可读性。
## 配置项
所有的配置文件都在 [.eslintrc.js](https://github.com/adempiere/adempiere-vue/blob/master/.eslintrc.js) 中。
本项目基本规范是依托于 vue 官方的 eslint 规则 [eslint-config-vue](https://github.com/vuejs/eslint-config-vue) 做了少许的修改。大家可以按照自己的需求进行定制化配置。
比如:我个人或者项目组习惯于使用两个空格,但你可能觉得四个空格更顺眼,你可以做如下修改。
进入项目 `.eslintrc.js` 中,找到 `indent`,然后修改为 `4` 即可。 还有各种各样的配置信息,详情见 [ESLint 文档](https://eslint.org/docs/rules/)。
在 [v3.8.1](https://github.com/adempiere/adempiere-vue/releases/tag/v3.8.1)版本之后,增加了[eslint-plugin-vue](https://github.com/vuejs/eslint-plugin-vue)来更好的校验 vue 相关代码。
默认情况下使用了最严格的`plugin:vue/recommended`来校验代码,若你觉得太严格可自行修改。
```js
// https://github.com/adempiere/adempiere-vue/blob/master/.eslintrc.js
module.exports = {
extends: ['plugin:vue/recommended', 'eslint:recommended']
//你可以修改为 extends: ['plugin:vue/essential', 'eslint:recommended']
}
```
## 取消 ESLint 校验
如果你不想使用 ESLint 校验(不推荐取消),只要找到 [vue.config.js](https://github.com/adempiere/adempiere-vue/blob/master/vue.config.js) 文件。
进行如下设置 `lintOnSave: false` 即可。
## vscode 配置 ESLint
这所谓工欲善其事,必先利其器,个人推荐 eslint+vscode 来写 vue绝对有种飞一般的感觉。效果如图
![eslintGif.gif](https://adempiere-vue.gitee.io/gitee-cdn/adempiere-vue-site/e94a76df-6dc0-4c15-9785-28b553a163e9.png)
<br/>
每次保存vscode 就能标红不符合 eslint 规则的地方,同时还会做一些简单的自我修正。安装步骤如下:
首先安装 eslint 插件
![eslint1.png](https://adempiere-vue.gitee.io/gitee-cdn/adempiere-vue-site/72f126cb-09eb-4b27-b02e-65e79eb76220.png)
安装并配置完成 ESLint 后,我们继续回到 VSCode 进行扩展设置,依次点击 文件 > 首选项 > 设置 打开 VSCode 配置文件,添加如下配置
```json
{
"files.autoSave": "off",
"eslint.validate": [
"javascript",
"javascriptreact",
"vue-html",
{
"language": "vue",
"autoFix": true
}
],
"eslint.run": "onSave",
"eslint.autoFixOnSave": true
}
```
这样每次保存的时候就可以根据根目录下.eslintrc.js 你配置的 eslint 规则来检查和做一些简单的 fix。每个人和团队都有自己的代码规范统一就好了去打造一份属于自己的 eslint 规则上传到 npm 吧,如饿了么团队的 [config](https://www.npmjs.com/package/eslint-config-elemefe)vue 的 [config](https://github.com/vuejs/eslint-config-vue)。
[vscode 插件和配置推荐](https://github.com/varHarrie/Dawn-Blossoms/issues/10)
## 更多配置
由于本项目是基于`vue-cli`进行构建,所以更多配置可参考官方[文档](https://cli.vuejs.org/zh/config/#lintonsave)
## 自动修复
```bash
npm run lint -- --fix
```
运行如上命令eslint 会自动修复一些简单的错误。