-
Notifications
You must be signed in to change notification settings - Fork 2
/
.eslintrc
49 lines (49 loc) · 1.08 KB
/
.eslintrc
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
{
"root": true,
"extends": "airbnb-base",
"parser": "babel-eslint",
parserOptions: {
sourceType: 'module'
},
"plugins": ["html"],
"settings": {
"html/indent": "+2",
"html/report-bad-indent": "error",
"html/javascript-mime-types": ["text/javascript", "text/jsx"],
"html/html-extensions": [".vue"]
},
"env": {
"browser": true,
"node": true,
"es6": true
},
"globals": {
"CKEDITOR": true
},
"rules": {
"no-restricted-syntax": 0,
"o-absolute-path": 0,
"no-new": 0,
"no-console": 0,
"no-bitwise": 0,
"no-useless-escape": 0,
"no-underscore-dangle": 0,
'global-require': 0,
'import/no-unresolved': 0,
'no-param-reassign': 0,
'no-shadow': 0,
"valid-jsdoc": ["error", {
"requireReturn": true,
"requireReturnType": true,
"requireParamDescription": true,
"requireReturnDescription": true
}],
"require-jsdoc": ["error", {
"require": {
"FunctionDeclaration": true,
"MethodDefinition": true,
"ClassDeclaration": true
}
}]
}
}