aboutsummaryrefslogtreecommitdiffstats
path: root/.rubocop.yml
blob: 5b6c3f2dc622a1b439b1789e960cf89e57573fc7 (plain) (blame)
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
AllCops:
  Exclude:
    - 'extensions/**/*'
    - 'node_modules/**/*'
    - 'skins/**/*'
    - 'tests/frontend/node_modules/**/*'
    - 'vendor/**/*'
  StyleGuideCopsOnly: true

Metrics/LineLength:
  Max: 100

Metrics/MethodLength:
  Enabled: false

Style/Alias:
  Enabled: false

Style/SignalException:
  Enabled: false

Style/StringLiterals:
  EnforcedStyle: single_quotes

Style/TrivialAccessors:
  ExactNameMatch: true