aboutsummaryrefslogtreecommitdiff
path: root/.rubocop.yml
blob: 440bedead84c95b1f632cd925c592043cad48328 (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
AllCops:
  Exclude:
    - 'vendor/**/*'
    - '.git/**/*'
    - 'bin/rubocop'
    - 'slackbuilds/**/*'

Style/Documentation:
  Enabled: false

Style/TrailingCommaInHashLiteral:
  EnforcedStyleForMultiline: consistent_comma

Style/FrozenStringLiteralComment:
  Exclude:
    - '**/db/migrate/*'

Layout/MultilineMethodCallIndentation:
  EnforcedStyle: indented

Layout/ArgumentAlignment:
  EnforcedStyle: with_fixed_indentation

Layout/EndAlignment:
  EnforcedStyleAlignWith: variable

Metrics/BlockLength:
  ExcludedMethods:
    - describe
    - refine