Skip to content

Commit

Permalink
eslint 설정 적용 변경했다
Browse files Browse the repository at this point in the history
  • Loading branch information
healtheloper committed Nov 24, 2023
1 parent 3181ddf commit cf7c92a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ module.exports = {
'no-unsafe-optional-chaining': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/ban-types': 'off',
'@typescript-eslint/no-unused-vars': 'off',
// '@typescript-eslint/no-unused-vars': 'off',
'@typescript-eslint/ban-ts-comment': 'off',
'react-hooks/exhaustive-deps': 'off',
'react-refresh/only-export-components': 'off',
Expand Down
10 changes: 2 additions & 8 deletions tsconfig.base.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,11 @@
{
"exclude": [
"node_modules",
"lib",
"esm",
"cjs",
"config/storybook/main.js"
],
"exclude": ["node_modules", "lib", "esm", "cjs", "config/storybook/main.js"],
"compilerOptions": {
"target": "es2015",
"lib": ["dom", "esnext"],
"module": "esnext",
"moduleResolution": "node",
"jsx": "react",
"jsx": "react-jsx",
"resolveJsonModule": true,
"esModuleInterop": true,
"skipLibCheck": true,
Expand Down

0 comments on commit cf7c92a

Please sign in to comment.