From 862996198497b9d5381aab16452f3ca8888fc9c6 Mon Sep 17 00:00:00 2001 From: yi Date: Sun, 20 Oct 2019 22:49:23 +0300 Subject: [PATCH] Update .eslintrc.js Fixed Eslint rules. --- .eslintrc.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.eslintrc.js b/.eslintrc.js index 90edbd5..a454d2c 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -16,11 +16,13 @@ module.exports = { rules: { "@typescript-eslint/no-explicit-any": "off", "@typescript-eslint/explicit-function-return-type": "off", - "@typescript-eslint/no-non-null-assertion": "off" + "@typescript-eslint/no-non-null-assertion": "off", + "@typescript-eslint/no-this-alias": "off", + "prefer-rest-params": "off" }, settings: { react: { version: 'detect', }, }, -}; \ No newline at end of file +};