summaryrefslogtreecommitdiff
path: root/.rubocop.yml
blob: e248a433762ac36ab8c902413ea7b90583f29656 (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
inherit_from: .rubocop_todo.yml

AllCops:
  TargetRubyVersion: 2.3
  DisplayStyleGuide: true
  Exclude:
    - 'test/scanners/**/*'
    - 'bench/example.ruby'
    - 'old-stuff/**/*'
    - 'test/lib/**/*'

Gemspec/RequiredRubyVersion:
  Enabled: false

Gemspec/DuplicatedAssignment:
  Enabled: false

Layout/AccessModifierIndentation:
  Enabled: false

Layout/AlignArguments:
  Enabled: false

Layout/AlignArray:
  Enabled: false

Layout/AlignHash:
  Enabled: false

Layout/SpaceInsideBlockBraces:
  EnforcedStyle: space
  EnforcedStyleForEmptyBraces: space