-
Notifications
You must be signed in to change notification settings - Fork 51
/
.rubocop.cc.yml
50 lines (42 loc) · 943 Bytes
/
.rubocop.cc.yml
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# https://github.com/bbatsov/rubocop/blob/master/config/default.yml
# require: rubocop-rspec
inherit_from:
- bixby_default.yml
AllCops:
TargetRubyVersion: 2.4
TargetRailsVersion: 5.1
DisplayCopNames: true
Exclude:
- 'db/**/*'
- 'spec/fixtures/**/*'
- 'vendor/**/*'
- 'red5/**/*'
- 'jetty/**/*'
- 'fedora_conf/**/*'
- 'felix/**/*'
- 'felix_conf/**/*'
- 'log/**/*'
- 'solr_conf/**/*'
- 'tmp/**/*'
- '.gitignore'
- 'coverage/**/*'
Rails:
Enabled: true
Metrics/LineLength:
Enabled: false
Metrics/ClassLength:
CountComments: false
Enabled: false
Metrics/ModuleLength:
CountComments: false
Enabled: false
Metrics/MethodLength:
CountComments: false
Max: 15
Style/HashSyntax:
EnforcedStyle: ruby19
SupportedStyles:
- ruby19
- ruby19_no_mixed_keys
# Force hashes that have a symbol value to use hash rockets
UseHashRocketsWithSymbolValues: false