인프런 영문 브랜드 로고
인프런 영문 브랜드 로고

Inflearn Community Q&A

kimchoungy's profile image
kimchoungy

asked

Creating a Restaurant Map App (React Native + NestJS)

[2-5] Drawer Navigation

eslintrc.js와 prettierrc.js 파일 코드 알려주시면 감사하겠습니다.

Resolved

Written on

·

192

0

너무 거슬리는 prettier 오류가 뜨는데, 코드 주시면 적용해보겠습니다 감사합니

react-nativetypescriptnestjsreact-queryzustand

Answer 1

0

Kyo님의 프로필 이미지
Kyo
Instructor

prettierrc.js 코드입니다

module.exports = {

  arrowParens: 'avoid',

  bracketSameLine: true,

  bracketSpacing: false,

  singleQuote: true,

  trailingComma: 'all',

};

eslintrc.js 코드입니다

module.exports = {
  root: true,
  extends: '@react-native',
};

 

kimchoungy's profile image
kimchoungy

asked

Ask a question