removed unnecessary rules from .eslintrc

This commit is contained in:
Kim, Jimin 2021-05-30 17:52:13 +09:00
parent 251f8b2666
commit a4677b19c2

View file

@ -26,27 +26,6 @@
"@typescript-eslint/no-empty-interface": "off",
"@typescript-eslint/explicit-module-boundary-types": "off",
"react/jsx-uses-vars": "error",
"react/no-unknown-property": [
"error",
{
"ignore": [
"class",
"onclick",
"onload",
"onsubmit",
"crossorigin"
]
}
],
"react/react-in-jsx-scope": ["off"],
"react/prop-types": ["off"],
"react/display-name": ["off"],
"react/jsx-key": ["off"],
"react/jsx-no-target-blank": [
"error",
{
"allowReferrer": true
}
]
"react/react-in-jsx-scope": ["off"]
}
}