20.10.31 23:03 작성
·
566
0
(질문은 아닙니다)
vscode에 prettier 사용할 때 뜨는 eslintrc 추가해봣습니다.
"jsx-a11y/label-has-associated-control": "off",
"jsx-a11y/anchor-is-valid": "off",
"no-console": "off",
"no-underscore-dangle": "off",
"react/forbid-prop-types": "off",
"react/jsx-filename-extension": "off",
"react/jsx-one-expression-per-line": "off",
"react/jsx-wrap-multilines": "off",
"react/no-array-index-key": "off",
"object-curly-newline": "off",
"linebreak-style": "off",
"arrow-body-style": "off",
"comma-dangle": "off",
"consistent-return": "off",
"operator-linebreak": "off"
답변 4
0
2020. 11. 23. 23:57
groovejumat님 댓글을 늦게 확인해서 죄송합니다.
늦었을지는 모르겠지만 혹시 몰라서 댓글 남길게요.
빨간줄이 뜨는 부분에 마우스 올리고 disable no-unused-vars for the entire file 누르면
해당 파일 최상단에 주석이 생기는데 이거 잘라내기 해서 eslintrc rules에 넣고 off로 설정해주시면 됩니다.
0