-
Notifications
You must be signed in to change notification settings - Fork 759
/
.rubocop.yml
89 lines (68 loc) · 1.45 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
inherit_from: .rubocop_todo.yml
require:
- rubocop-performance
- rubocop-minitest
AllCops:
NewCops: enable
TargetRubyVersion: 2.5
DisplayCopNames: true
Include:
- '**/Rakefile'
- '**/config.ru'
- 'Gemfile'
- '**/*.rb'
- '**/*.rake'
Exclude:
<% `git status --ignored --porcelain`.lines.grep(/^!! /).each do |path| %>
- <%= path.sub(/^!! /, '') %>
<% end %>
- '**/*.js'
- '**/node_modules/**/*'
- '**/public/**/*'
- '**/tmp/**/*'
- 'vendor/**/*'
- 'test/dummy_sprockets/**/*'
- 'test/dummy_webpacker1/**/*'
- 'test/dummy_webpacker2/**/*'
- 'test/dummy_webpacker3/**/*'
- 'react_ujs/**/*'
Naming/FileName:
Exclude:
- '**/Gemfile'
- '**/Rakefile'
- 'lib/react-rails.rb'
Layout/LineLength:
Max: 120
Style/StringLiterals:
EnforcedStyle: double_quotes
Style/Documentation:
Enabled: false
Style/HashEachMethods:
Enabled: true
Style/HashTransformKeys:
Enabled: true
Style/HashTransformValues:
Enabled: true
Metrics/AbcSize:
Max: 28
Metrics/CyclomaticComplexity:
Max: 7
Metrics/PerceivedComplexity:
Max: 10
Metrics/ClassLength:
Max: 150
Metrics/ParameterLists:
Max: 5
CountKeywordArgs: false
Metrics/MethodLength:
Max: 41
Metrics/ModuleLength:
Max: 180
Naming/RescuedExceptionsVariableName:
Enabled: false
# Style/GlobalVars:
# Exclude:
# - 'spec/dummy/config/environments/development.rb'
Metrics/BlockLength:
Exclude:
- 'test/**/*_test.rb'