-
Notifications
You must be signed in to change notification settings - Fork 23
/
.eslintrc.js
31 lines (31 loc) · 1.06 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
/* eslint-disable */
module.exports = {
extends: [],
globals: {
Component: true,
App: true,
Page: true
},
// parser: 'babel-eslint',
parserOptions: {
ecmaVersion: 6,
amd: true,
// es6: true
},
rules: {
'indent': [0, 2], // 4个空格作为代码缩进
'no-underscore-dangle': 0, // 允许使用下划线定义变量或方法,例如 _name
'class-methods-use-this': 0, // 允许如果方法内没有用到this,不需强制定义成静态方法。
'no-unused-expressions': [0, {allowShortCircuit: true}], // 允许使用表达式
'no-new': 0, // 这个规则旨在通过禁止使用new不将结果对象分配给变量的关键字的构造函数调用来维护一致性和约定。
'object-property-newline': 0, // 允许对象属性不换行
'object-curly-newline': 0,
'no-plusplus': [0, {allowForLoopAfterthoughts: true}],
'prefer-promise-reject-errors': 0,
'no-restricted-properties': 0,
'no-param-reassign': 0,
'no-else-return': 0,
'linebreak-style': 0,
'import/no-unresolved': 0
}
};