From 6b2c0195b26f40075ca7232ac119682312bb67c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=9B=90=EB=8D=94?= Date: Mon, 4 Jan 2021 20:09:41 +0900 Subject: [PATCH] lint: updated eslint rules --- .eslintrc.js | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/.eslintrc.js b/.eslintrc.js index cb52d7a..c0910c2 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -30,14 +30,9 @@ module.exports = { 'react/prop-types': 'off', 'react/react-in-jsx-scope': 'off', 'jsx-a11y/anchor-is-valid': 'off', + '@typescript-eslint/explicit-function-return-type': 'off', + '@typescript-eslint/explicit-module-boundary-types': 'off', '@typescript-eslint/no-unused-vars': ['warn'], - '@typescript-eslint/explicit-function-return-type': [ - 'warn', - { - allowExpressions: true, - allowConciseArrowFunctionExpressionsStartingWithVoid: true, - }, - ], indent: [ 'error', 'tab'