반응형
Prettier
-
[error] trailing spaces not allowed.eslintno-trailing-spaces, Delete `⏎`eslintprettier/prettierReact-Native 2024. 4. 25. 13:28
자꾸 엔터만 치면 위와 같은 에러가 아주 친절하게 같이 나왔다솔직히 개발하는데는 큰 문제는 없는 에러고 그냥 무시해도 되지만... 빨간줄이 거슬려서 설정을 아래와 같이 변경해서 해결했다 1. trailing spaces not allowed.eslintno-trailing-spaces (vscode)settings -> trim tailing spaces 검색 -> Trim Trailing Whitespace 체크 2. Delete `⏎`eslintprettier/prettier.eslintrc.js (해당 프로젝트의 eslint 관련 설정파일에 들어가면 될듯) -> 아래와 같이 수정 // 기존 코드module.exports = {root: true,extends: '@react-native',};..