-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[#1] Code Convention setting with ESLint & Prettier #1
Comments
ESLintESLint는 JavaScript, JSX의 정적 분석 도구로 오픈 소스 프로젝트이다. JSLint, JSHint와 같이 다른 JavaScript 정적 분석 도구들도 있지만, ESLint가 커스터마이징이 쉽고 확장성이 뛰어나 많이 쓰이고 있는 추세이다. 따라서 본 프로젝트에서도 ESLint를 사용하고자 한다. 설정 공유ESLint는 Shareable Configs라는 기능을 제공하고 있다. 이는 누군가 만들어 놓은 ESLint 설정을 npm을 이용해 쉽게 설치, 확장해서 사용할 수 있는 기능이다. 그래서 본 프로젝트에선 직접 설정을 만들고 규칙을 추가하기보다 잘 정립된 설정을 가져다 쓸 것이다. 설치최근 6개월간 설치된 eslint package 비교이다. airbnb가 압도적이다. 따라서 본 플젝에서도 airbnb 설정을 사용할 것이다. 위 패키지를 한번에 설치하는 커맨드는 다음과 같다. 또 본 플젝에서는 typescript도 함께 사용하기 때문에 다음과 같은 패키지들도 추가로 install 해주자. .eslintrc 설정이제 eslint에 대한 세부 설정을 해줄 것인데 이러한 작업을 명시해주는 파일이 .eslintrc이다. eslintrc 파일의 핵심 구성 정보는 env, globals, rules 로 구성되어있다.
이 외에도 extends, plugins 를 키로 사용하여 규칙들을 원하는대로 적용을 할 수 있는데 참고 및 출처https://tech.kakao.com/2019/12/05/make-better-use-of-eslint/ |
PrettierPrettier는 코드를 정해진 규칙에 따라 자동으로 정리해주는 기능을 제공한다. 설치
.prettierrc 설정prettier도 마찬가지로 세부설정에 대한 명세를 .prettierrc 파일에 작성한다.
참고 및 출처https://www.npmtrends.com/eslint-config-airbnb-vs-eslint-config-google-vs-standard |
…odule error fixed by importing React & tsconfig.json.compilerOptions.jsx = react-jsx -> react
[#1] Code Convention setting with ESLint & Prettier
…ct from 'react' added. eslint-disabled import prefer default added in history singleton
에러: https://github.com/prettier/eslint-config-prettier/blob/main/CHANGELOG.md#version-800-2021-02-21 https://velog.io/@mokyoungg/TS-CRA-TypeScript-Eslint-Prettier-VSC |
ESLint 와 Prettier 플러그인을 통해 본 프로젝트의 문법적인 오류나 안티 패턴을 방지하고 일관된 코드 스타일로 작성되도록 할 것이다.
The text was updated successfully, but these errors were encountered: