config: add only-arrow-functions rule to tslint

This commit is contained in:
Xymorot 2019-10-13 02:34:15 +02:00
parent 88f17f43ea
commit 5237efb88c
1 changed files with 2 additions and 1 deletions

View File

@ -25,7 +25,8 @@
"no-parameter-reassignment": true,
"arrow-return-shorthand": true,
"no-default-export": true,
"prefer-template": true
"prefer-template": true,
"only-arrow-functions": [true, "allow-named-functions"]
},
"jsRules": true
}