-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
37 lines (37 loc) · 814 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
{
"parser": "babel-eslint",
"env": {
"browser": false,
"commonjs": true,
"es2021": true,
"jest": true
},
"extends": ["airbnb-base", "plugin:jsdoc/recommended"],
"parserOptions": {
"sourceType": "module",
"babelOptions": {
"configFile": "./babel.config.json"
}
},
"globals": {
"process": true,
"describe": true,
"test" : true,
"expect": true,
"beforeAll": true,
"afterAll": true,
"it": true
},
"rules": {
"max-len": ["error", {"code": 130 }],
"valid-jsdoc": "off"
},
"plugins": [
"jsdoc"
],
"settings": {
"jsdoc": {
"mode": "typescript"
}
}
}