aboutsummaryrefslogtreecommitdiff
path: root/.rubocop.yml
blob: 3b3d2f2e426061dc899743f062bf79aa67343396 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
inherit_from:
  - .rubocop_todo.yml

AllCops:
  RunRailsCops: true # always run the rails cops

# Don't enforce documentation
Style/Documentation:
  Enabled: false

# Force before_filter until upgrade to Rails 4
Rails/ActionFilter:
  EnforcedStyle: filter

Metrics/MethodLength:
  Max: 20