如何对 rubocop.yml 中的特定规则使用排除

How to use excludes for a specific rule in rubocop.yml

Metrics/BlockLength:
  Excludes:
    - '/app/**'

我有这个。rubocop.yml,我希望 rubocop 不会只针对应用程序下有关块长度的任何文件抱怨。但它仍然抱怨,是不是我遗漏了什么?

我认为你应该使用:

Metrics/BlockLength:
  Exclude:
    - "app/**/*"

http://rubocop.readthedocs.io/en/latest/configuration/#includingexcluding-files