forked from win0err/gnome-runcat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
41 lines (41 loc) · 912 Bytes
/
.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
{
"env": {
"es2021": true
},
"extends": "airbnb/base",
"parserOptions": {
"ecmaVersion": "latest"
},
"ignorePatterns": ["@types/", "node_modules/"],
"rules": {
"indent": [
"error",
4
],
"arrow-parens": ["error", "as-needed"],
"no-underscore-dangle": [
"error",
{
"allowAfterThis": true,
"allowAfterSuper": true
}
],
"no-unused-vars": [
"error",
{
"varsIgnorePattern": "^(init|enable|disable|buildPrefsWidget)$"
}
],
"eol-last": ["error", "never"],
"strict": "off",
"no-plusplus": "off",
"max-len": [
"error",
120
]
},
"globals": {
"imports": "readonly",
"log": "readonly"
}
}