mirror of
https://github.com/codex-team/codex.docs.git
synced 2025-07-24 23:59:46 +02:00
23 lines
435 B
Text
23 lines
435 B
Text
{
|
|
"extends": [
|
|
"codex/ts"
|
|
],
|
|
"plugins": [
|
|
"chai-friendly"
|
|
],
|
|
"env": {
|
|
"mocha": true
|
|
},
|
|
"rules": {
|
|
"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
|
|
},
|
|
"parser": "@typescript-eslint/parser",
|
|
"globals": {
|
|
"fetch": true,
|
|
"alert": true
|
|
}
|
|
}
|