-
Notifications
You must be signed in to change notification settings - Fork 1
/
.rubocop.yml
28 lines (28 loc) · 868 Bytes
/
.rubocop.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
# Common configuration.
AllCops:
# Include gemspec and Rakefile
Include:
- '**/*.gemspec'
# - '.pipeline/deployment/**/*.rb'
Exclude:
- 'Gemfile'
- 'bin/**'
- 'tmp/**/*'
- 'db/**/*.rb'
RunRailsCops: true
Documentation: # http://www.rubydoc.info/github/bbatsov/rubocop/Rubocop/Cop/Style/Documentation
Enabled: false
LineLength: # http://www.rubydoc.info/github/bbatsov/rubocop/Rubocop/Cop/Style/LineLength
Enabled: false
MethodLength: # http://www.rubydoc.info/github/bbatsov/rubocop/Rubocop/Cop/Style/MethodLength
Max: 15
ClassAndModuleChildren: # http://www.rubydoc.info/github/bbatsov/rubocop/Rubocop/Cop/Style/ClassAndModuleChildren
Enabled: false
TimeZone:
Enabled: false
EndOfLine:
Enabled: false
ClassLength: # http://www.rubydoc.info/github/bbatsov/rubocop/Rubocop/Cop/Style/ClassLength
Max: 500
AbcSize:
Max: 20