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
- js 거리두기 확인하기
- suspense 비동기
- 백준 1339번 자바스크립트
- 백준 1339번 nodejs
- 리액트쿼리 suspense
- 프로그래머스 문자열 압축
- 카카오 코테
- 프로그래머스 거리두기 확인하기
- 옵셔널체이닝
- js 스코프
- TypeError: createContext only works in Client Components. Add the "use client" directive at the top of the file to use it. Read more:
- 구름톤 챌린지 회고
- 구름톤
- 백준 1339번 js
- 사용성 개선
- js
- 백준 2108 자바스크립트
- suspense 병목현상
- 구름톤 챌린지
- next13 emotion
- 자바스크립트 스코프
- 스코프
- emotion RSC
- 자바스크립트 문자열 압축
- js 문자열 압축
- suspense react-query
- app router emotion
- 백준 2108 nodejs
- suspense 동작원리
- emtion app router
Archives
- Today
- Total
목록자바스크립트 prettier (1)
Lennon FE
[자바스크립트 코드 컨벤션] ESLint, Prettier, airbnb style guide로 설정하기
ESLint 간단히 말하자면 소스코드를 분석해 에러 및 버그를 보고해주는 도구이다. Prettier 본래 스타일 대신 규칙을 정해 규칙대로 다시 작성해 주는 것이다. 좋은 코드 컨벤션을 지키기위해 한 번 적용해보자. 1. 우선 vscode에 확장 프로그램으로 ESLint, Prettier 두 개를 설치하자. 2. 터미널에서 본인의 프로젝트에 들어가 eslint와 prettier을 설치하자. 2-1. eslint 설치 $ npm install eslint --save-dev 2-2. prettier 설치 $ npm install prettier --save-dev --save-exact 2-3. eslint와 prettier의 충돌을 방지하기 위해 설치 $ npm install eslint-plugin-p..
🧑💻 Web/JavaScript
2021. 12. 8. 21:22