[Error] Delete `␍`eslintprettier/prettier

sooyoung choi·2023년 12월 8일
1

Error log

목록 보기
6/9
post-thumbnail

nestjs cli로 파일 생성 후 계속 요렇게 에러가 잡혀있었다. eslint님이 화가 나 계신 건 이유가 있는 것일텐데 왜 줄바꿈 부분에서만 난리신지..?

원인

endOfLine에서 설정한 LF에 문제였다.
그래서 줄바꿈 부분에 죄다 에러 표시가 되어있었다.


해결 방법

//.eslntrc.js 에서 해당 내용추가
rules: {
        'prettier/prettier': [
            'error',
            {
                endOfLine: 'auto',
            },
        ],
    },
  ...

0개의 댓글