fix(typescript): Rule "no-magic-numbers"

Signed-off-by: Valentin Popov <info@valentineus.link>
This commit is contained in:
Valentin Popov 2020-02-14 16:17:32 +04:00
parent 6d6086298a
commit d1c4968ba4
Signed by: Valentin Popov
GPG Key ID: 269A00ACA90A8EA3

View File

@ -60,6 +60,10 @@
{
"detectObjects": false,
"enforceConst": true,
"ignore": [
0,
1
],
"ignoreArrayIndexes": false,
"ignoreEnums": true,
"ignoreNumericLiteralTypes": true,