-
Notifications
You must be signed in to change notification settings - Fork 0
/
.rubocop.yml
140 lines (134 loc) · 2.9 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<%
require "open3"
def gem_exists(gem)
res = Open3.popen3("bundle", "info", "^#{gem}$") do |i, o, e, t|
t.value.success?
end
end
%>
---
inherit_mode:
merge:
- Exclude
require:
- standard
<%= "- standard-rails" if gem_exists "rails" %>
- standard-custom
- standard-performance
- rubocop-performance
- rubocop-rake
<%= "- rubocop-factory_bot" if gem_exists "factory_bot" %>
<%= "- rubocop-rspec" if gem_exists "rspec-core" %>
<%= "- rubocop-rails" if gem_exists "rails" %>
<%= "- rubocop-rspec_rails" if gem_exists "rails" %>
<%= "- rubocop-capybara" if gem_exists "capybara" %>
inherit_gem:
standard: config/base.yml
<%= "standard-rails: config/base.yml" if gem_exists "rails" %>
standard-performance: config/base.yml
standard-custom: config/base.yml
# custom enables/disables
Layout/LineLength:
Enabled: false
Layout/EmptyLineBetweenDefs:
AllowAdjacentOneLineDefs: true
Layout/ExtraSpacing:
Enabled: false
Layout/SpaceBeforeComma:
Enabled: false
Layout/SpaceInsideHashLiteralBraces:
Enabled: false
Style/DisableCopsWithinSourceCodeDirective:
Enabled: true
Rake/Desc:
Enabled: false
<% if gem_exists "rails" %>
Rails/ThreeStateBooleanColumn:
Enabled: false
<% end %>
<% if gem_exists "rspec-core" %>
RSpec/MultipleExpectations:
Enabled: false
RSpec/ExampleLength:
Enabled: false
<% end %>
#
# Ignore differences from Rails autogeneration
#
Style/GlobalStdStream:
Exclude:
- 'config/environments/*'
Layout/SpaceInsideArrayLiteralBrackets:
Exclude:
- 'config/environments/*'
#
# Ignore differences from RSpec autogeneration
#
Style/StringLiterals:
Exclude:
- 'spec/rails_helper.rb'
AllCops:
NewCops: enable
Include:
- '**/*.rb'
- '**/*.arb'
- '**/*.axlsx'
- '**/*.builder'
- '**/*.fcgi'
- '**/*.gemfile'
- '**/*.gemspec'
- '**/*.god'
- '**/*.jb'
- '**/*.jbuilder'
- '**/*.mspec'
- '**/*.opal'
- '**/*.pluginspec'
- '**/*.podspec'
- '**/*.rabl'
- '**/*.rake'
- '**/*.rbuild'
- '**/*.rbw'
- '**/*.rbx'
- '**/*.ru'
- '**/*.ruby'
- '**/*.schema'
- '**/*.spec'
- '**/*.thor'
- '**/*.watchr'
- '**/.irbrc'
- '**/.pryrc'
- '**/.simplecov'
- '**/buildfile'
- '**/Appraisals'
- '**/Berksfile'
- '**/Brewfile'
- '**/Buildfile'
- '**/Capfile'
- '**/Cheffile'
- '**/Dangerfile'
- '**/Deliverfile'
- '**/Fastfile'
- '**/*Fastfile'
- '**/Gemfile'
- '**/Guardfile'
- '**/Jarfile'
- '**/Mavenfile'
- '**/Podfile'
- '**/Puppetfile'
- '**/Rakefile'
- '**/rakefile'
- '**/Schemafile'
- '**/Snapfile'
- '**/Steepfile'
- '**/Thorfile'
- '**/Vagabondfile'
- '**/Vagrantfile'
Exclude:
- 'target/**/*'
- 'node_modules/**/*'
- 'src/**/*'
- 'tmp/**/*'
- 'vendor/**/*'
- '.git/**/*'
- 'db/migrate/*.active_storage.rb'
- 'db/migrate/*.acts_as_taggable_on_engine.rb'