# 문제상황
저장을 할 때마다 다음과 같은 문제가 발생함.
# 해결방법
1. 프로젝트 내 .prettierrc.js 내용 수정
module.exports = {
bracketSpacing: false,
jsxBracketSameLine: true,
singleQuote: true,
trailingComma: 'all',
endOfLine: 'auto', // 이 부분 추가
};
2. Visual Studio Code 설정 변경
'LANGUAGE > React Native' 카테고리의 다른 글
[RN] Unable to load script. Make sure you're either running a Metro server (0) | 2020.06.17 |
---|---|
[RN] watchman 설치 (windows10) (0) | 2020.06.14 |
[RN] React-Native 프로젝트 생성 및 빌드 (0) | 2020.06.13 |
[RN] react-native 환경 구축, windows / expo(x) (0) | 2020.06.13 |
[RN] React-Native expo 개발환경, extension, settings (0) | 2020.06.12 |