250x250
반응형
- Today
- Total
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- sessionStorage
- NextJS
- resolved to branch.
- 리액트 라이프사이클
- 리액트 알림
- 비동기 병렬처리
- 리액트
- next.js toast
- 사회복무요원 훈련소
- localStorage
- useformstatus
- query param
- 훈련소 후기
- styled-component
- 훈련소
- server action
- react
- 자바스크립트
- react life sycle
- 오라클클라우드
- no-use-before-define
- The above error occurred in the
- 공익 훈련소
- 산업기능요원 훈련소
- useRouter
- react toast
- svgr
- 자바스크립트 순수함수
- angular
- 오블완
Archives
아 그거 뭐였지
[Prettier] vsCode prettier delete cr 오류 본문
728x90
반응형
prettier를 설치해서 사용하던도중 컴파일 오류는 아닌데 굉장히 거슬리게 빨간줄이 그어져있었다.
문제가 뭔가 하고보니 `cr` 을 삭제하라고한다. cr을 삭제하는 방법을 모르니 저 오류가 안뜨게 해보자.
프로젝트의 최상위 폴더에 .eslintrc.js에서 rules에 아래내용을 적어주면된다.
'prettier/prettier': [
'error',
{
'endOfLine': 'auto',
}
]
전체 코드는 아래와 같다.
module.exports = {
parser: '@typescript-eslint/parser',
parserOptions: {
project: 'tsconfig.json',
tsconfigRootDir : __dirname,
sourceType: 'module',
},
plugins: ['@typescript-eslint/eslint-plugin'],
extends: [
'plugin:@typescript-eslint/recommended',
'plugin:prettier/recommended',
],
root: true,
env: {
node: true,
jest: true,
},
ignorePatterns: ['.eslintrc.js'],
rules: {
'@typescript-eslint/interface-name-prefix': 'off',
'@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/explicit-module-boundary-types': 'off',
'@typescript-eslint/no-explicit-any': 'off',
//이부분을 추가해주면된다.
'prettier/prettier': [
'error',
{
'endOfLine': 'auto',
}
]
},
};
이렇게 해주면 거슬리는 오류가 사라진다!
728x90
반응형
'Front-End' 카테고리의 다른 글
[CSS] 폰트 직접 추가해서 사용하기 (0) | 2022.08.22 |
---|---|
[React] 리액트 useNavigate 페이지 이동 (0) | 2022.07.28 |
[React] Styled-Component onChange TypeScript , useState (0) | 2022.07.16 |
[React] Styled-Component 사용해보기 (Props로 재사용 컴포넌트 만들기) (0) | 2022.06.27 |
[React] 리액트 중첩 라우팅 하기 (BrowserRouter) (0) | 2022.06.26 |
Comments