forked from flippercloud/flipper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.rubocop.yml
48 lines (36 loc) · 780 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# This is the configuration used to check the rubocop source code.
require: rubocop-rspec
inherit_from:
- .rubocop_todo.yml
AllCops:
Exclude:
- 'docker-compose/**/*'
- 'examples/**/*'
- 'tmp/**/*'
- 'bin/**/*'
TargetRubyVersion: 2.0
# DefaultFormatter: fuubar
Style/Alias:
Enabled: false
Style/Documentation:
Enabled: false
Style/Encoding:
Enabled: false
Style/NumericLiterals:
Enabled: false
Style/StringLiterals:
Enabled: false
Metrics/LineLength:
Max: 100
Exclude:
- '*.gemspec'
Style/RegexpLiteral:
EnforcedStyle: mixed
Style/TrailingCommaInLiteral:
EnforcedStyleForMultiline: consistent_comma
RSpec/InstanceVariable:
Enabled: false
Style/AccessorMethodName:
Enabled: false
Lint/HandleExceptions:
Enabled: false