forked from dmitriym09/calendar-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.json
38 lines (38 loc) · 861 Bytes
/
.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
{
"root": true,
"rules": {
"no-cond-assign": 0,
"no-unused-vars": 2,
"object-shorthand": [2, "always"],
"no-console": 0,
"no-const-assign": 2,
"no-class-assign": 2,
"no-this-before-super": 2,
"no-var": 2,
"no-unreachable": 2,
"valid-typeof": 2,
"one-var": [2, "never"],
"prefer-arrow-callback": 2,
"prefer-const": [2, {
"destructuring": "all"
}],
"no-inner-declarations": 0
},
"env": {
"es6": true,
"node": true,
"mocha": true
},
"extends": [
"eslint:recommended",
"plugin:prettier/recommended",
"plugin:jsdoc/recommended"
],
"plugins": [
"jsdoc"
],
"parserOptions": {
"ecmaVersion": 8,
"sourceType": "module"
}
}