elm-review로 unused variables 검사
npx elm-review --template jfmengels/elm-review-unused/example --rules NoUnused.Variables
무엇인가를 발견하면 다음과 같다.-- ELM-REVIEW ERROR -
src/Main.elm:19:40
(fix) NoUnused.Variables: Imported variable `func` is not used
19| import Hoge exposing (func)
^^^^
You should either use this value somewhere, or remove it at the location I
pointed at.
Errors marked with (fix) can be fixed automatically using `elm-review --fix`.
elm-review
jfmengels/elm-reviewjfmengels/node-elm-review새로운elm의linter같은것
elm의 linter는 이전부터 사용되기 시작했다stil4m/elm-analyse. 위에서 실행된 것처럼 elm-review의 NoUnused가 있다.Variables 규칙은 elm-andalyse에서 감지되지 않은 사용되지 않은 변수를 찾을 수 있습니다
import Hoge exposing (func)
import Fuga
hoge = Fuga.func 4
elm-analyse는 위에서 말한 바와 같이qualified에서 사용하는 변수 (함수) 는 import에 있어도 사용하지 않은 것으로 검출되지 않습니다특징.
--fix
까지 집행하면 수정 제안이 있을 거예요.편리끝맺다
한번 써보세요.
Reference
이 문제에 관하여(elm-review로 unused variables 검사), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://zenn.dev/miyamoen/articles/e5d67f5eea83ff5656dd텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)