ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • 자주 사용하는 eslintrc.js 룰
    Bundler 2021. 1. 11. 01:00
    module.exports = {
      rules: {
        // 하나의 값을 배열로 했을 때 (에러로 처리)
        'react-native/no-single-element-style-arrays': 2,
        // jsx에서 함수 사용 하지 않기 (에러로 처리)
        'react/jsx-no-bind': 2,
        // jsx 상에서 인라인 스타일 사용하지 않기 (에러로 처리)
        'react-native/no-inline-styles': 2,
        // 불필요한 스타일 선언 하지 않기 (에러로 처리)
        'react-native/no-unused-styles': 2,
      },
    };

    팀워크에서 코드 블럭을 맞추어나간다는 점은 매우 좋습니다.

    그런 의미에서 eslint를 사용하는 것은 불필요한 코드 유지 관리 리소스를 줄이는 데에 도움이 됩니다.

    2로 설정한 것은 에러로 나타내겠다는 뜻입니다.

     

    eslint.org/docs/rules/

     

    List of available rules

    no-unreachabledisallow unreachable code after `return`, `throw`, `continue`, and `break` statements

    eslint.org

     

    'Bundler' 카테고리의 다른 글

    yarn 글로벌 설치  (0) 2022.05.08
    GULP 설치하기  (0) 2018.04.23
Designed by Tistory.