develog

eslint ignore 본문

카테고리 없음

eslint ignore

냐옴 2022. 5. 9. 17:33

프로젝트 root에 .eslintignore 파일을 아래 내용으로 생성한다

# .eslintignore

**/*.js

 

https://eslint.org/docs/2.13.1/user-guide/configuring#ignoring-files-and-directories

 

Configuring ESLint

Configuring ESLint ESLint is designed to be completely configurable, meaning you can turn off every rule and run only with basic syntax validation, or mix and match the bundled rules and your custom rules to make ESLint perfect for your project. There are

eslint.org

 

Comments