Flow
Static type checking is the process of verifying the type safety of a program based on analysis of a program's text (source code). If a program passes a static type checker, then the program is guaranteed to satisfy some set of type safety properties for all possible inputs. - en.wikipedia.org
Flow is a static type checker for JavaScript. - flow
정적 타입 검사기를 사용하면 무엇이 좋을까?
가독성이 좋은 코드의 작성 가능
분석하기 좋은 코드의 작성 가능
신뢰할 수 있는 리펙터링 허용
더 좋은 IDE 지원 허용
잠재적인 에러의 사전 식별 가능
특징
리엑트에 빌트인되어 있다.
점진적으로 적용할 수 있다.
설치
초기화
Third Party 라이브러리들을 Flow 에서 인식할 수 있도록 정의
현재 프로젝트의 flow-typed 폴더에서 확인할 수 있다.
styled-component 에 대한 예외처리
루트에 .flowconfig 파일 생성
Flow 적용
적용하려는 jsx 파일 상단에
eslint rule 수정
**.eslintrc.json
특정 라인에 대하여 Flow 오류를 무시하려면
실행
eslint
참고
Last updated