-
-
Notifications
You must be signed in to change notification settings - Fork 253
/
.eslintrc
84 lines (83 loc) · 2.38 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
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
{
"extends": [
"mourner",
"plugin:import/recommended"
],
"parserOptions": {
"sourceType": "module",
"ecmaVersion": 2018
},
"plugins": [
"import",
"jsdoc"
],
"rules": {
// temporarily disabled for easier upgrading of dependencies
"implicit-arrow-linebreak": "off",
"arrow-parens": "off",
"arrow-body-style": "off",
"no-confusing-arrow": "off",
"array-bracket-spacing": "off",
"consistent-return": "off",
"import/no-commonjs": "error",
"import/no-duplicates": "error",
"import/no-unresolved": "error",
"no-lonely-if": "off",
"no-unused-vars": ["error", {"argsIgnorePattern": "^_"}],
"no-warning-comments": "error",
"no-mixed-operators": ["error", {"groups": [["&", "|", "^", "~", "<<", ">>", ">>>"], ["&&", "||"]]}],
"object-curly-spacing": ["error", "never"],
"prefer-arrow-callback": "error",
"prefer-const": ["error", {"destructuring": "all"}],
"prefer-template": "error",
"quotes": "off",
"space-before-function-paren": "off",
"template-curly-spacing": "error",
"no-useless-escape": "off",
"indent": ["error", 4, {
"flatTernaryExpressions": true,
"CallExpression": {
"arguments": "off"
},
"FunctionDeclaration": {
"parameters": "off"
},
"FunctionExpression": {
"parameters": "off"
}
}],
"no-multiple-empty-lines": [ "error", {
"max": 1
}],
"jsdoc/check-param-names": "error",
"jsdoc/require-param": "error",
"jsdoc/require-param-description": "error",
"jsdoc/require-param-name": "error",
"jsdoc/require-returns": "error",
"jsdoc/require-returns-description": "error",
"jsdoc/require-property": "error",
"jsdoc/check-access": "error",
"jsdoc/check-line-alignment": ["error", "any", {"wrapIndent": " "}],
"jsdoc/check-property-names": "error",
"jsdoc/check-types": "error",
"jsdoc/require-description": "error",
"jsdoc/require-param-type": "error",
"jsdoc/require-property-description": "error",
"jsdoc/require-property-name": "error",
"jsdoc/require-property-type": "error",
"jsdoc/require-returns-type": "error"
},
"settings": {
"jsdoc":{
"ignorePrivate": true,
"preferredTypes": {
"object": "Object"
}
}
},
"ignorePatterns": ["src/extend.js"],
"env": {
"es2018": true,
"browser": true
}
}