From 5f10becf0597f63f5d81d98dde088f421b15bb4e Mon Sep 17 00:00:00 2001 From: Jun99uu_Lee Date: Sat, 16 Dec 2023 21:15:23 +0900 Subject: [PATCH] fix: ts config + eslint --- client/.eslintrc.json | 7 ++----- client/tsconfig.json | 2 +- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/client/.eslintrc.json b/client/.eslintrc.json index 4474ccb..2061f22 100644 --- a/client/.eslintrc.json +++ b/client/.eslintrc.json @@ -5,12 +5,9 @@ "plugin:prettier/recommended", "plugin:storybook/recommended" ], - "plugins": [ - "@typescript-eslint", - "prettier" - ], + "plugins": ["@typescript-eslint", "prettier"], "rules": { - "@typescript-eslint/explicit-module-boundary-types": "off", + "@typescript-eslint/explicit-module-boundary-types": "warn", "prettier/prettier": "error", "react/react-in-jsx-scope": "off" }, diff --git a/client/tsconfig.json b/client/tsconfig.json index 630ce47..645ca9d 100644 --- a/client/tsconfig.json +++ b/client/tsconfig.json @@ -4,7 +4,7 @@ "lib": ["dom", "dom.iterable", "esnext"], "allowJs": true, "skipLibCheck": true, - "strict": true, + "strict": false, "noEmit": true, "esModuleInterop": true, "module": "esnext",