summaryrefslogtreecommitdiff
path: root/.rubocop.yml
blob: 273968fa5394e2efa42b5271ffdcb96d56a73bb2 (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
AllCops:
  Exclude:
    - vendor/**
    - bin/**
    - .bundle/**

LineLength:
  Enabled: false

MethodLength:
  Enabled: false

ClassLength:
  Enabled: false

Documentation:
  # don't require classes to be documented
  Enabled: false

Encoding:
  # no need to always specify encoding
  Enabled: false

Lambda:
  # TODO: replace all lambda with -> or Proc
  Enabled: false

CyclomaticComplexity:
  Enabled: false

DoubleNegation:
  Enabled: false

CaseEquality:
  Enabled: false