1
0
Fork 0
mirror of https://github.com/codex-team/codex.docs.git synced 2025-07-18 20:59:42 +02:00
codex.docs/.eslintrc

24 lines
435 B
Text
Raw Normal View History

{
"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
}
}