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

AllCops:
  TargetRubyVersion: 2.3
  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