-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
49 lines (48 loc) · 1.35 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
{
"env": {
"es6": true
},
"parserOptions": {
"sourceType": "script"
},
"extends": "airbnb-base",
"plugins": ["jsdoc", "prettier"],
"rules": {
"prettier/prettier": "error",
"linebreak-style": "off",
"strict": "off",
"no-mixed-operators": "off",
"max-len": "off",
"object-curly-newline": "off",
"arrow-parens": "off",
"function-paren-newline": "off",
"wrap-iife": "off",
"no-param-reassign": "off",
"consistent-return": "off",
"comma-dangle": "off",
"quotes": ["error", "single"],
"space-before-function-paren": "off",
"import/no-unresolved": "off",
"one-var": "off",
"implicit-arrow-linebreak": "off",
"no-else-return": "off",
"global-require": "off",
"no-use-before-define": "off",
"spaced-comment": "off",
"no-console": "off",
"prefer-destructuring": "off",
"jsdoc/check-param-names": 1,
"jsdoc/check-tag-names": 1,
"jsdoc/check-types": 1,
"jsdoc/newline-after-description": 0,
"jsdoc/require-description-complete-sentence": 1,
"jsdoc/require-example": 0,
"jsdoc/require-hyphen-before-param-description": 1,
"jsdoc/require-param": 1,
"jsdoc/require-param-description": 1,
"jsdoc/require-param-name": 1,
"jsdoc/require-param-type": 1,
"jsdoc/require-returns-description": 1,
"jsdoc/require-returns-type": 1
}
}