forked from zhongyi-tong/electronic-wechat
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc
More file actions
24 lines (24 loc) · 646 Bytes
/
.eslintrc
File metadata and controls
24 lines (24 loc) · 646 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"parser": "babel-eslint",
"extends": "airbnb/base",
"rules": {
"strict": "off",
"max-len": "off",
"prefer-template": "warn",
"arrow-body-style": "off",
"no-unused-vars": "warn",
"no-undef": "off",
"array-callback-return": "off",
"no-confusing-arrow": "off",
"consistent-return": "warn",
"no-param-reassign": "off",
"default-case": "off",
"guard-for-in": "off",
"no-restricted-syntax": "off",
"no-underscore-dangle": "off",
"new-cap": "warn",
"no-console": "off",
"global-require": "off",
"class-methods-use-this": "warn"
},
}