2018-08-17 13:58:44 +03:00
|
|
|
{
|
|
|
|
"extends": [
|
2022-03-06 11:38:59 +04:00
|
|
|
"codex/ts"
|
2018-08-17 13:58:44 +03:00
|
|
|
],
|
|
|
|
"plugins": [
|
2022-03-06 11:38:59 +04:00
|
|
|
"chai-friendly"
|
2018-08-17 13:58:44 +03:00
|
|
|
],
|
|
|
|
"env": {
|
|
|
|
"mocha": true
|
|
|
|
},
|
|
|
|
"rules": {
|
2022-03-05 22:57:23 +04:00
|
|
|
"no-unused-expressions": 1,
|
|
|
|
"chai-friendly/no-unused-expressions": 2,
|
|
|
|
"@typescript-eslint/ban-types": 1,
|
|
|
|
"@typescript-eslint/no-magic-numbers": 0,
|
|
|
|
"@typescript-eslint/no-explicit-any": 1
|
2018-10-07 19:25:12 +03:00
|
|
|
},
|
2022-03-05 22:57:23 +04:00
|
|
|
"parser": "@typescript-eslint/parser",
|
2018-10-07 19:25:12 +03:00
|
|
|
"globals": {
|
|
|
|
"fetch": true,
|
|
|
|
"alert": true
|
2018-08-17 13:58:44 +03:00
|
|
|
}
|
|
|
|
}
|