JavaScript, JSX의 정적 분석 도구로 오픈 소스 프로젝트
직접 만들 수 있지만 일단 많이 사용중인 것을 써보자
Airbnb : https://github.com/airbnb/javascript
npx install-peerdeps --dev eslint-config-airbnb
yarn -P -D eslint-config-airbnb (?)
.eslintrc.js
module.exports = {
env: {
browser: true,
es6: true,
node: true,
},
extends: ["airbnb", "plugin:prettier/recommended"],
};
Google : https://github.com/google/eslint-config-google
yarn add eslint eslint-config-google
https://tech.kakao.com/2019/12/05/make-better-use-of-eslint/