We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
이용 동의 약관 , 개인정보 수집 동의
The text was updated successfully, but these errors were encountered:
interface 타입을 any[] 지정 후 커밋 시 다음과 같은 에러 발생 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
해결법
//.eslintrc.json { ... "rules": { // Unexpected any. Specify a different type 문구 제거 "@typescript-eslint/no-explicit-any": "off", // React, { ReactElement } from "react" 설정 안함 "@typescript-eslint/explicit-module-boundary-types": "off", } }
참고 링크 : https://velog.io/@j_wisdom_h/Unexpected-any.-Specify-a-different-type.-eslint
Sorry, something went wrong.
Rose4tune
Successfully merging a pull request may close this issue.
이용 동의 약관 , 개인정보 수집 동의
The text was updated successfully, but these errors were encountered: