forked from DIYgod/RSSHub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
114 lines (114 loc) · 3.11 KB
/
.eslintrc.json
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"extends": ["eslint:recommended", "plugin:n/recommended", "plugin:prettier/recommended", "plugin:yml/recommended"],
"plugins": ["prettier"],
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"env": {
"node": true,
"es6": true,
"browser": true
},
"rules": {
// possible problems
"array-callback-return": 2,
"no-await-in-loop": 2,
"no-control-regex": 0,
"no-duplicate-imports": 2,
"no-prototype-builtins": 0,
"no-unsafe-negation": 2,
"require-atomic-updates": 0,
// suggestions
"arrow-body-style": 2,
"block-scoped-var": 2,
"curly": 2,
"dot-notation": 2,
"eqeqeq": 2,
"no-console": 2,
"no-eval": 2,
"no-extend-native": 2,
"no-extra-label": 2,
"no-global-assign": 2,
"no-implicit-coercion": [
"error",
{
"boolean": false,
"number": false,
"string": false,
"disallowTemplateShorthand": true
}
],
"no-implicit-globals": 2,
"no-labels": 2,
"no-multi-str": 2,
"no-new-func": 2,
"no-restricted-imports": 2,
"no-return-await": 2,
"no-unneeded-ternary": 2,
"no-useless-computed-key": 2,
"no-useless-concat": 1,
"no-useless-rename": 2,
"no-var": 2,
"object-shorthand": 2,
"prefer-arrow-callback": 2,
"prefer-const": 2,
"prefer-regex-literals": 1,
"require-await": 2,
"spaced-comment": 2,
// layout & formatting
"arrow-parens": 2,
"arrow-spacing": 2,
"comma-spacing": 2,
"comma-style": 2,
"func-call-spacing": 2,
"keyword-spacing": 2,
"linebreak-style": 2,
"lines-around-comment": 2,
"no-multiple-empty-lines": 2,
"no-trailing-spaces": 2,
"rest-spread-spacing": 2,
"semi": 2,
"space-before-blocks": 2,
"space-in-parens": 2,
"space-infix-ops": 2,
"space-unary-ops": 2,
// plugin specific
"n/no-extraneous-require": [
"error",
{
"allowModules": ["puppeteer-extra-plugin-user-preferences", "puppeteer-extra-plugin-user-data-dir"]
}
],
"n/no-deprecated-api": 1,
"n/no-missing-require": 0,
"n/no-process-exit": 0,
"n/no-unpublished-require": [
"error",
{
"allowModules": ["tosource"]
}
],
"prettier/prettier": 0,
"yml/quotes": [
"error",
{
"prefer": "single"
}
]
},
"overrides": [
{
"files": ["*.yaml", "*.yml"],
"parser": "yaml-eslint-parser",
"rules": {
"lines-around-comment": [
"error",
{
"beforeBlockComment": false
}
]
}
}
]
}