This repository has been archived by the owner on Apr 2, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.rubocop.yml
65 lines (52 loc) · 1.46 KB
/
.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# This configuration was generated by `rubocop --auto-gen-config`
# on 2015-02-23 06:17:38 +0100 using RuboCop version 0.27.1.
# The point is for the user to remove these configuration records
# one by one as the offenses are removed from the code base.
# Note that changes in the inspected code, or installation of new
# versions of RuboCop, may require this file to be generated again.
# Offense count: 3
Style/Documentation:
Enabled: false
# Offense count: 2
# Cop supports --auto-correct.
# Configuration parameters: PreferredDelimiters.
Style/PercentLiteralDelimiters:
Enabled: false
# Offense count: 1
# Cop supports --auto-correct.
# Configuration parameters: EnforcedStyle, SupportedStyles.
Style/TrailingBlankLines:
Enabled: false
# Offense count: 1
# Cop supports --auto-correct.
# Configuration parameters: ExactNameMatch, AllowPredicates, AllowDSLWriters, Whitelist.
Style/TrivialAccessors:
Enabled: false
# Offense count: 2
# Cop supports --auto-correct.
Style/UnneededPercentQ:
Enabled: false
Style/ClassAndModuleChildren:
Enabled: false
Metrics/ClassLength:
Enabled: false
Documentation:
Enabled: false
Metrics/LineLength:
Max: 140
Metrics/MethodLength:
Max: 14
Lint/AmbiguousRegexpLiteral:
Enabled: false
Lint/ParenthesesAsGroupedExpression:
Enabled: false
AllCops:
Exclude:
- 'bin/*'
- 'Guardfile'
- 'db/**/*.rb'
- 'lib/tasks/*.rake'
- 'config/**/*'
- 'vendor/**/*'
- 'spec/spec_helper.rb'
- 'tmp/**/*'