1
0
Fork 0
mirror of https://github.com/codex-team/codex.docs.git synced 2025-07-24 23:59:46 +02:00
codex.docs/.eslintrc
Nikita Melnikov 8d9c19e595
Upgrade packages (#149)
* update babel, postcss and webpack

* update editor packages

* update linter packages
2022-03-06 11:38:59 +04:00

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