Skip to content

Commit

Permalink
feat #3 : error TS17004 관련 규칙 적용
Browse files Browse the repository at this point in the history
  • Loading branch information
DonghyunKim98 committed Dec 7, 2020
1 parent 4726a50 commit 5fe7153
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ module.exports = {
"rules": {
"@typescript-eslint/interface-name-prefix": "off",
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/jsx-quotes" : "off",
"import/prefer-default-export": "off",
"no-mixed-spaces-and-tabs": "off",
}
Expand Down
1 change: 1 addition & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"compilerOptions": {
"jsx" : "react",
"target": "es2017",
"module": "commonjs",
"esModuleInterop": true,
Expand Down

0 comments on commit 5fe7153

Please sign in to comment.