Disable some eslint typescript rules

Will be re-enabled when we have good type coverage
This commit is contained in:
Labhansh Agrawal 2019-10-12 01:18:23 +05:30 committed by Benjamin Staneck
parent 97242c5d78
commit 5608fdff9e

View file

@ -106,7 +106,12 @@
"extends": [
"plugin:@typescript-eslint/recommended",
"prettier/@typescript-eslint"
]
],
"rules": {
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-non-null-assertion": "off"
}
}
]
},