summaryrefslogtreecommitdiffhomepage
path: root/.rubocop.yml
blob: 476241751e499fdf7d9655e70d06dd2893b34623 (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
AllCops:
  TargetRubyVersion: 3.2
  NewCops: enable

Style/StringLiterals:
  EnforcedStyle: double_quotes

Style/StringLiteralsInInterpolation:
  EnforcedStyle: double_quotes

Style/FrozenStringLiteralComment:
  Enabled: true
  EnforcedStyle: always

Metrics/MethodLength:
  Max: 20

Metrics/ClassLength:
  Max: 500

Layout/LineLength:
  Enabled: false

Style/Documentation:
  Enabled: false