-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
executable file
·113 lines (110 loc) · 3.46 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
111
112
113
module.exports = {
root: true,
parserOptions: {
parser: 'babel-eslint'
},
"env": {
"browser": true,
"commonjs": true,
"es6": true,
"browser": true,
"node": true,
"amd": true
},
extends: ['plugin:vue/essential', 'airbnb-base', '@vue/prettier'],
globals: {
Atomics: 'readonly',
SharedArrayBuffer: 'readonly'
},
parserOptions: {
ecmaVersion: 2018,
sourceType: 'module',
parser: "babel-eslint"
},
plugins: ['vue', 'html'],
// check if imports actually resolve
settings: {
'import/resolver': {
webpack: {
config: '.electron-vue/webpack.renderer.config.js'
}
}
},
rules: {
// 句尾分号可以省略
// 'semi': ['error', 'never'],
// 代码中console/debugger处理
"prettier/prettier": ["error", { "singleQuote": true, "semi": false }],
'no-console': 'off',
'no-debugger': 'off',
// 代码使用4个空格的缩进风格
'indent': ['error', 2],
// 关闭命名function表达式规则
'func-names': 'off',
// 可以行尾空白
'no-trailing-spaces': 'off',
// 关闭拖尾逗号
'comma-dangle': 'off',
// 关闭换行符转换
'linebreak-style': 'off',
// 禁止使用指定语法
'no-restricted-syntax': ['error', 'WithStatement'],
// 关闭语句块之前的空格保持一致
'space-before-blocks': 'off',
// 可以使用++/--
'no-plusplus': 'off',
// 禁止未使用过的变量包括全局变量和函数中的最后一个参数必须使用
'no-unused-vars': [
'error', {
'vars': 'all',
'args': 'after-used'
}
],
// 使用单引号
'quotes': [
'error', 'single'
],
// 强制最大可嵌深度为8
'max-depth': 0,
// 强制函数块中的语句最大50行
'max-statements': [
'error', 50
],
// 强制行的最大长度150,注释200
'max-len': [
'error', {
'code': 200,
'comments': 800
}
],
// NodeJs rules, 9.0之后全部使用import
// 关闭require()强制在模块顶部调用
'global-require': 'off',
// ES6 rules
// 箭头函数的箭头前后都要有空格
'arrow-spacing': 'error',
// 接收const被修改的通知
'no-const-assign': 'error',
// 要求使用let或const而不是var
'no-var': 'error',
// 如果一个变量不会被重新赋值,则使用const声明
'prefer-const': 'error',
// 关闭强制在花括号内使用一致的换行符
'object-curly-newline': 'off',
// 链接地址中可以使用 javascript:
'no-script-url': 'off',
// 关闭点击元素上强制增加onKey**事件
'click-events-have-key-events': 'off',
// 关闭引用依赖检查
'import/no-extraneous-dependencies': 'off',
// 关闭路径处理依赖
'import/no-cycle': 'off',
"no-param-reassign": 0, //禁止给参数重新赋值
"no-use-before-define": 0,
"no-unused-vars": 'off',
"no-underscore-dangle":0,
"brace-style":0,
// 扩展名处理
'import/extensions': 'off',
}
};