Merge "If no secret key is available, don't try to use cache"
[lhc/web/wiklou.git] / .rubocop.yml
1 inherit_from: .rubocop_todo.yml
2
3 AllCops:
4 Exclude:
5 - 'extensions/**/*'
6 - 'skins/**/*'
7 - 'tests/frontend/node_modules/**/*'
8 - 'vendor/**/*'
9
10 AllCops:
11 StyleGuideCopsOnly: true
12
13 Metrics/LineLength:
14 Max: 100
15
16 Metrics/MethodLength:
17 Enabled: false
18
19 Style/Alias:
20 Enabled: false
21
22 Style/SignalException:
23 Enabled: false
24
25 Style/StringLiterals:
26 EnforcedStyle: single_quotes
27
28 Style/TrivialAccessors:
29 ExactNameMatch: true