From 6455d7a9d227320d3ffe1b00c9c739b846f339a8 Mon Sep 17 00:00:00 2001 From: Xiaozhen Liu Date: Tue, 24 Mar 2020 13:24:12 -0700 Subject: [PATCH] fix: disable empty-function check (#467) --- .eslintrc.json | 1 + 1 file changed, 1 insertion(+) diff --git a/.eslintrc.json b/.eslintrc.json index 12724a97..47cff91a 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -29,6 +29,7 @@ "@typescript-eslint/no-non-null-assertion": "off", "@typescript-eslint/no-use-before-define": "off", "@typescript-eslint/no-warning-comments": "off", + "@typescript-eslint/no-empty-function": "off", "@typescript-eslint/explicit-function-return-type": "off", "@typescript-eslint/camelcase": "off", "node/no-missing-import": "off",