aboutsummaryrefslogtreecommitdiff
path: root/.rubocop.yml
blob: f750353a1cc05426eda57b5554d8a5d701567ce9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
AllCops:
  TargetRubyVersion: 3.0

  NewCops: enable

  DisplayCopNames: true
  DisplayStyleGuide: false

  Exclude:
    - './_site/**/*'
    - vendor/**/*

require:
  - rubocop-performance
  - rubocop-rake

Layout/HashAlignment:
  EnforcedHashRocketStyle: table
  EnforcedColonStyle: table

Metrics/AbcSize:
  Max: 30

Metrics/MethodLength:
  Max: 20

# It's actually quite cool to spell my own name correctly...
Style/AsciiComments:
  Enabled: false