티스토리 뷰
타입스크립트(typescript)
[error(오류)/typescript(타입스크립트)/vscode]Delete `␍`eslintprettier/prettier 해결(solution)
개발자 고포고 2021. 11. 13. 23:12반응형
[error(오류)/typescript(타입스크립트)/vscode]Delete `␍`eslintprettier/prettier 해결
vscode에서 코딩하다보면 아래와같이 코딩스타일 오류가 나는경우가 있다.
Delete `␍`eslintprettier/prettier 와같은 메세지 에러가 표기된다.
[해결법]
.eslintrc.js 파일안에
rules 안에
'prettier/prettier': [
'error',
{
endOfLine: 'auto',
},
],
를 추가해주면 된다.
헷갈릴 수 도있어서 설정파일의 모든내용을 공유한다.
module.exports = {
parser: '@typescript-eslint/parser',
parserOptions: {
project: 'tsconfig.json',
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',
},
],
},
};
[결과]
아까 발생하던 문제가 잘 해결되었다.
#Delete `␍`eslintprettier/prettier #prettier #elintprettier #prettier에러 #`␍` #ts #typescript #js #javascript #vscode #error #solution
반응형
'타입스크립트(typescript)' 카테고리의 다른 글
[vscode] 키보드 입력 시 영어 자간 크게 벌어질 때(여백/공백) (0) | 2023.02.08 |
---|---|
[python/anaconda] 윈도우에서 아나콘다3 설치 및 설정하기 (0) | 2022.12.15 |
[nestjs/typeorm] typorm repository find orderby (정렬) 사용하기 (0) | 2022.12.14 |
[typescript/타입스크립트] class / interface 객체 생성 및 초기화 (0) | 2021.11.23 |
[타입스크립트(Typescript)/import]타입스크립트에서 javascript 라이브러리 Import(임포트)/추가 하기(cannot import library in typescript) (0) | 2021.11.15 |
댓글
반응형