summaryrefslogtreecommitdiffhomepage
path: root/.rubocop.yml
blob: 60bfee36a3b6210ac0027a4be12bc3680816098d (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
30
31
32
33
34
35
36
inherit_from: .rubocop_todo.yml

require:
  - rubocop-minitest

AllCops:
  DisabledByDefault: true
  NewCops: enable
  SuggestExtensions: false
  TargetRubyVersion: 2.6
  Exclude:
    - 'docs/**/*'
    - 'examples/**/*'
    - 'vendor/bundle/**/*'

Layout:
  Enabled: true

Layout/CommentIndentation:
  AllowForAlignment: true

Layout/ExtraSpacing:
  AllowBeforeTrailingComments: true

Lint:
  Enabled: true

Minitest:
  Enabled: true

Style:
  Enabled: true

Style/NumericLiterals:
  Exclude:
    - 'lib/**/*'