2018-08-26 11:30:20 +03:00
|
|
|
{
|
2020-09-06 10:32:16 +03:00
|
|
|
"extends": [
|
|
|
|
"@shlinkio/js-coding-standard"
|
|
|
|
],
|
2018-08-26 11:30:20 +03:00
|
|
|
"plugins": ["jest"],
|
|
|
|
"env": {
|
|
|
|
"jest/globals": true
|
|
|
|
},
|
2020-08-22 09:06:41 +03:00
|
|
|
"parserOptions": {
|
|
|
|
"tsconfigRootDir": ".",
|
|
|
|
"createDefaultProgram": true
|
|
|
|
},
|
2018-08-26 11:30:20 +03:00
|
|
|
"globals": {
|
|
|
|
"process": true,
|
|
|
|
"setImmediate": true
|
|
|
|
},
|
2020-09-06 10:32:16 +03:00
|
|
|
"rules": {
|
2021-02-28 14:56:56 +03:00
|
|
|
"@typescript-eslint/no-unsafe-assignment": "off",
|
2021-02-28 19:21:26 +03:00
|
|
|
|
2021-02-28 14:56:56 +03:00
|
|
|
"@typescript-eslint/no-unsafe-member-access": "off",
|
|
|
|
"@typescript-eslint/no-unsafe-call": "off",
|
|
|
|
"@typescript-eslint/no-unsafe-return": "off",
|
|
|
|
"@typescript-eslint/naming-convention": "off",
|
|
|
|
"@typescript-eslint/ban-types": "off",
|
|
|
|
"@typescript-eslint/no-base-to-string": "off",
|
|
|
|
"no-nonoctal-decimal-escape": "off"
|
2020-09-06 10:32:16 +03:00
|
|
|
}
|
2018-08-26 11:30:20 +03:00
|
|
|
}
|