How to tell Rubocop to ignore a specific directory or file

前端 未结 4 1462
盖世英雄少女心
盖世英雄少女心 2020-12-29 00:34

My project is extending open-source classes from a third-party gem that we don\'t want to hold to the same coding standards as our own code. Refactoring the gem code isn\'t

4条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-29 01:24

    From rubocop/default.yml:

    AllCops:
      Exclude:
        - 'node_modules/**/*'
        - 'vendor/**/*'
    

提交回复
热议问题