-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
37 lines (37 loc) · 914 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
{
"env": {
"browser": true,
"es2021": true,
"node": true,
"jasmine": true,
"codeceptjs/codeceptjs": true
},
"extends": [
"airbnb-base",
"prettier",
"plugin:jasmine/recommended",
"plugin:codeceptjs/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 12,
"sourceType": "module"
},
"plugins": [
"@typescript-eslint",
"jasmine",
"codeceptjs"
],
"rules": {
"no-undef": "warn",
"no-unused-vars": "warn",
"no-console": "warn",
"import/no-unresolved": "off",
"import/extensions": "off",
"import/prefer-default-export": "off",
"import/no-extraneous-dependencies": "off",
"no-restricted-syntax": "off",
"no-restricted-globals": "off",
"class-methods-use-this": "off"
}
}