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
- 카라쿠 커리
- 삿포로 공항
- nextjs eslint
- nextjs redux
- 일본 아메리카노 가격
- nextjs typescript
- codepen
- react 스프레드
- 후쿠오카 스타벅스
- 카라쿠
- nextjs redux example
- 리액트 이벤트 핸들링
- typscript react
- react nextjs
- typescript react next
- next typescript example
- redux example
- react
- react hook typescript
- typescript next
- create-next-app
- 스타벅스
- react map
- NODE_PATH
- 일본스타벅스
- 신겐라멘
- typescript hooks
- nextjs prettier
- nextjs
- react hooks
Archives
- Today
- Total
일안하고블로그
[NextJs] 2. create-next-app 에 Eslint & prettier적용하기 본문
개발 tool은 vsocde로 사용을합니다. 개발을 할때 eslint와 & prettier 적용을 안하면 정말 많이 불편합니다. 설정을 제대로 하면 개발 시간이 2배이상 증가 할 거라고 생각될 만큼 저한테는 정말 중요한 설정입니다.
1. yarn add 해주세요 . (제가 사용하는 것들입니다.)
yarn add --dev eslint eslint-config-prettier eslint-plugin-import eslint-plugin-prettier eslint-plugin-react eslint-plugin-react-hooks prettier @typescript-eslint/eslint-plugin @typescript-eslint/parser
2. 로컬에 .eslintrc 파일을 추가합니다.
{
"compilerOptions": {
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": false,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"baseUrl": ".",
"paths": {
"@src/*": ["./src/*"]
}
},
"exclude": ["node_modules"],
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"]
}
3. 로컬에 .prettierrc파일을 추가합니다.
{
"singleQuote": false,
"semi": true,
"useTabs": true,
"tabWidth": 2,
"trailingComma": "all",
"printWidth": 80
}
모두 적용을 하고 /pages/_app.tsx 파일을 보시면 아래 이미지와 같이 빨간줄이 생성되어있습니다.
해당 파일을 저장 하시면
적용완료입니다.
'React > NextJS' 카테고리의 다른 글
[NextJs] 4. nextjs redux typescript 적용 예제 counter 만들기 (0) | 2021.01.27 |
---|---|
[NextJs] 3. nextjs styled-component material ui 적용 (0) | 2021.01.22 |
[NextJs ]1. React + Typescript +nextJs 적용 법 create-next-app (0) | 2021.01.22 |
Comments