-
Notifications
You must be signed in to change notification settings - Fork 2
/
.eslintrc.js
110 lines (103 loc) · 3.15 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
module.exports = {
root: true,
env: {
node: true
},
extends: [
'plugin:vue/vue3-essential',
'eslint:recommended',
'@vue/standard',
'@vue/typescript/recommended',
'@vue/prettier'
],
parserOptions: {
// parser: 'babel-eslint',
ecmaVersion: 2020
},
globals: {
require: false,
process: false
},
rules: {
/**
* 代码错误
*/
'no-console': 0,
'no-debugger': 0,
/**
* 最佳实践
*/
'eqeqeq': 2, // 强制使用 === 和 !==
'default-case': 1, // 要求 switch 语句中有 default 分支
'no-else-return': 1, // 禁止 if 语句中 return 语句之后有 else 块
'no-empty-function': 1, // 禁止出现空函数
'no-multi-spaces': 1, // 禁止使用多个空格
'radix': 1, // 强制在parseInt()使用基数参数
/**
* 变量声明
*/
'init-declarations': ['error', 'always'], // 声明变量必须赋值
/**
* 风格指南
*/
// 'array-bracket-spacing': ['error', 'always'], // 数组方括号内必须空格
'space-before-function-paren': 0,
'array-bracket-spacing': 0, // 数组方括号内必须空格
'comma-dangle': 2, // 禁止末尾逗号
'eol-last': 2, // 要求文件末尾存在空行
// 对象冒号前禁止空格,冒号后必须空格
'key-spacing': [
'error', { 'beforeColon': false, 'afterColon': true }
],
// 关键字(if、else等)前后必须有空格
'keyword-spacing': [
'error',
{ 'before': true, 'after': true }
],
// 禁止出现多行空行
'no-multiple-empty-lines': [
'error',
{ 'max': 1 }
],
'semi': ['error', 'never'], // 禁止末尾分号
'quotes': ['error', 'single'],
'space-infix-ops': 2, // 操作符周围必须有空格
'spaced-comment': ['error', 'always'], // 注释后面必须跟随至少一个空白
'object-curly-spacing': 0,
'no-unused-expressions': 0,
/**
* ECMAScript6
*/
'arrow-spacing': ['error', { 'before': true, 'after': true }], // 强制箭头函数的箭头前后使用空格
'no-var': 2, // 禁止使用 var 声明变量
'object-shorthand': 2, // 要求使用对象方法名和属性名简写
'prefer-arrow-callback': 2, // 要求回调函数使用箭头函数
'prefer-const': 2, // 使用 const 声明那些声明后不再被修改的变量
'prefer-rest-params': 2, // 要求使用剩余参数而不是 arguments
/**
* vue
*/
'vue/valid-v-model': 0,
/**
* typescript
* https://github.com/typescript-eslint/typescript-eslint/tree/master/packages/eslint-plugin/docs/rules
*/
'@typescript-eslint/member-delimiter-style': [
2,
{
multiline: {
delimiter: 'none',
requireLast: true,
},
singleline: {
delimiter: 'semi',
requireLast: false,
}
}
],
'@typescript-eslint/ban-ts-ignore': 0,
'@typescript-eslint/no-explicit-any': 0,
'@typescript-eslint/interface-name-prefix': 0,
'vue/no-dupe-keys': 0
}
}