-
-
Notifications
You must be signed in to change notification settings - Fork 45
/
.eslintrc.js
54 lines (50 loc) · 1.65 KB
/
.eslintrc.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
// http://eslint.org/docs/user-guide/configuring
// http://eslint.cn/docs/user-guide/configuring 中文
module.exports = {
root: true,
// JavaScript 语言选项
parserOptions: {
parser: 'babel-eslint',
},
//环境定义了预定义的全局变量。更多在官网查看
env: {
node: true,
},
extends: [
// https://github.com/vuejs/eslint-plugin-vue#priority-a-essential-error-prevention
// consider switching to `plugin:vue/strongly-recommended` or `plugin:vue/recommended` for stricter rules.
'plugin:vue/essential',
'@vue/prettier',
],
/** add your custom rules here
* 'off' 或 0 - 关闭规则
* 'warn' 或 1 - 开启规则,使用警告级别的错误:warn (不会导致程序退出),
* 'error' 或 2 - 开启规则,使用错误级别的错误:error (当被触发的时候,程序会退出)
*/
rules: {
'prettier/prettier': 'error',
////////////////
// 可能的错误 //
////////////////
// allow debugger during development
'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0,
// 禁用 console
'no-console': 0,
// 禁用 alert、confirm 和 prompt
'no-alert': 0,
//////////////
// 风格指南 //
//////////////
// 要求或禁止使用分号而不是 ASI(这个才是控制行尾部分号的,)
semi: [0, 'always'],
// 强制在 function的左括号之前使用一致的空格
'space-before-function-paren': [0, 'always'],
//////////////
// ES6.相关 //
//////////////
// 要求箭头函数的参数使用圆括号
'arrow-parens': 2,
// allow async-await
'generator-star-spacing': 0,
},
};