summaryrefslogtreecommitdiff
path: root/.rubocop.yml
blob: e948a5838afe0944d9a22d56a0926e229e98c9a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
AllCops:
  Exclude:
    - "spec/data/**/*"
    - "vendor/**/*"
    - "pkg/**/*"
    - "spec/unit/plugins/darwin/system_profiler_output.rb"

# these have shellout examples that need to have the tabs that come with the shellout
Layout/Tab:
  Exclude:
    - "lib/ohai/plugins/mono.rb"
    - "lib/ohai/plugins/darwin/hardware.rb"

Performance/UnneededSort:
  Enabled: true