salsify_rubocop 0.60.0.1 → 0.85.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.rubocop.yml +2 -2
- data/.travis.yml +7 -3
- data/CHANGELOG.md +22 -2
- data/Gemfile +2 -0
- data/Rakefile +2 -0
- data/conf/rubocop_without_rspec.yml +24 -11
- data/lib/rubocop/cop/salsify/rails_application_mailer.rb +5 -3
- data/lib/rubocop/cop/salsify/rails_application_serializer.rb +5 -3
- data/lib/rubocop/cop/salsify/rails_unscoped.rb +3 -1
- data/lib/rubocop/cop/salsify/rspec_doc_string.rb +5 -3
- data/lib/rubocop/cop/salsify/rspec_dot_not_self_dot.rb +4 -2
- data/lib/rubocop/cop/salsify/rspec_string_literals.rb +4 -2
- data/lib/rubocop/cop/salsify/style_dig.rb +3 -1
- data/lib/rubocop/rspec/language/each_selector.rb +2 -0
- data/lib/salsify_rubocop.rb +4 -0
- data/lib/salsify_rubocop/version.rb +3 -1
- data/salsify_rubocop.gemspec +9 -3
- metadata +38 -11
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d08274563973f107ae87494c994284ac9989f5653ab55bb8063e312de83e0b8b
|
4
|
+
data.tar.gz: 62498d79bfb7e1e94c86170210531f9d3ab1c37845077f144c42c8e5d83077b3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d091764bbd87bc8388f17ffb2b980d6aa79cff6cb20f06a50348f9e2ba27ee0dcb8f9b9fc53580fe820e098d3f2a353d431eafe579aef865059e12b92cdaa3c8
|
7
|
+
data.tar.gz: a587b9d3e3aa4d81d30a66bd0cb99c41ff97e50f32de4f8f32460fc8d57701e769b2237d781a8ea67d1e835aecaa4b6e1d3fd47b9e574e9303b0f48d384c993b
|
data/.rubocop.yml
CHANGED
data/.travis.yml
CHANGED
data/CHANGELOG.md
CHANGED
@@ -1,7 +1,27 @@
|
|
1
1
|
# salsify_rubocop
|
2
2
|
|
3
|
+
## 0.85.0
|
4
|
+
- Upgrate to `rubocop` v0.85.0
|
5
|
+
- Enable enforcement of Gem comments when specifying versions or sources
|
6
|
+
- Drop support for Ruby 2.3, as rubocop v0.81+ doesn't support it anymore
|
7
|
+
- Add `FrozenStringLiteralComment` and `LineLength` (max 120) rules.
|
8
|
+
|
9
|
+
## v0.78.1
|
10
|
+
- Fix "`Style/SymbolArray` is concealed by line 190" warning
|
11
|
+
|
12
|
+
## v0.78.0
|
13
|
+
- Upgrade to `rubocop` v0.78.0
|
14
|
+
- Upgrade to `rubocop_rspec` v1.37.0
|
15
|
+
- Add `rubocop-rails `v2.4.0`
|
16
|
+
- Add `rubocop-performance `v1.5.0`
|
17
|
+
- Update names/namespaces of rules that changed between 0.62 and 0.78
|
18
|
+
|
19
|
+
## v0.62.0
|
20
|
+
- Upgrade to `rubocop` v0.62.0
|
21
|
+
- Upgrade to `rubocop_rspec` v1.31.0
|
22
|
+
|
3
23
|
## v0.60.0.1
|
4
|
-
- Upgrade to `rubocop_rspec`
|
24
|
+
- Upgrade to `rubocop_rspec` v1.30.1
|
5
25
|
|
6
26
|
## v0.60.0
|
7
27
|
- Upgrade to `rubocop` v0.60.0
|
@@ -16,7 +36,7 @@
|
|
16
36
|
- Adjust Ruby version configuration in `Salsify/StyleDig` spec.
|
17
37
|
|
18
38
|
## v0.52.1.1
|
19
|
-
- Fix `Salsify/StyleDig` false positive in assignments (see [#20](https://github.com/salsify/salsify_rubocop/issues/20)).
|
39
|
+
- Fix `Salsify/StyleDig` false positive in assignments (see [#20](https://github.com/salsify/salsify_rubocop/issues/20)).
|
20
40
|
|
21
41
|
## v0.52.1
|
22
42
|
- Update to `rubocop` v0.52.1 and `rubocop-rspec` v1.21.0.
|
data/Gemfile
CHANGED
data/Rakefile
CHANGED
@@ -9,6 +9,15 @@ AllCops:
|
|
9
9
|
- 'tmp/**/*'
|
10
10
|
- 'vendor/**/*'
|
11
11
|
|
12
|
+
Bundler/GemComment:
|
13
|
+
Enabled: true
|
14
|
+
OnlyFor:
|
15
|
+
- 'version_specifiers'
|
16
|
+
- 'source'
|
17
|
+
- 'git'
|
18
|
+
- 'github'
|
19
|
+
- 'gist'
|
20
|
+
|
12
21
|
# This cop has poor handling for the common case of a lambda arg in a DSL
|
13
22
|
Lint/AmbiguousBlockAssociation:
|
14
23
|
Enabled: false
|
@@ -22,7 +31,7 @@ Performance/RedundantMerge:
|
|
22
31
|
Style/Alias:
|
23
32
|
EnforcedStyle: prefer_alias_method
|
24
33
|
|
25
|
-
Layout/
|
34
|
+
Layout/HashAlignment:
|
26
35
|
Enabled: false
|
27
36
|
|
28
37
|
Style/Documentation:
|
@@ -67,13 +76,13 @@ Naming/FileName:
|
|
67
76
|
- 'Appraisals'
|
68
77
|
|
69
78
|
Style/FrozenStringLiteralComment:
|
70
|
-
Enabled:
|
79
|
+
Enabled: true
|
71
80
|
|
72
81
|
Style/GuardClause:
|
73
82
|
Enabled: false
|
74
83
|
|
75
84
|
# does not make sense to enable this without AlignHash
|
76
|
-
Layout/
|
85
|
+
Layout/FirstHashElementIndentation:
|
77
86
|
Enabled: false
|
78
87
|
|
79
88
|
Style/Lambda:
|
@@ -134,10 +143,6 @@ Style/StringLiterals:
|
|
134
143
|
Exclude:
|
135
144
|
- 'spec/**/*'
|
136
145
|
|
137
|
-
# We don't require %i() for an array of symbols.
|
138
|
-
Style/SymbolArray:
|
139
|
-
Enabled: false
|
140
|
-
|
141
146
|
Naming/VariableNumber:
|
142
147
|
Enabled: false
|
143
148
|
|
@@ -156,10 +161,12 @@ Metrics/ClassLength:
|
|
156
161
|
Metrics/CyclomaticComplexity:
|
157
162
|
Enabled: false
|
158
163
|
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
164
|
+
Layout/LineLength:
|
165
|
+
Enabled: true
|
166
|
+
Max: 120
|
167
|
+
IgnoreCopDirectives: true
|
168
|
+
IgnoredPatterns:
|
169
|
+
- ^#
|
163
170
|
|
164
171
|
Metrics/MethodLength:
|
165
172
|
Enabled: false
|
@@ -183,3 +190,9 @@ Style/NumericLiterals:
|
|
183
190
|
|
184
191
|
Style/StructInheritance:
|
185
192
|
Enabled: false
|
193
|
+
|
194
|
+
Style/WordArray:
|
195
|
+
EnforcedStyle: brackets
|
196
|
+
|
197
|
+
Style/SymbolArray:
|
198
|
+
EnforcedStyle: brackets
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
module RuboCop
|
2
4
|
module Cop
|
3
5
|
module Salsify
|
@@ -19,9 +21,9 @@ module RuboCop
|
|
19
21
|
|
20
22
|
minimum_target_rails_version 5.0
|
21
23
|
|
22
|
-
MSG = 'Mailers should subclass `ApplicationMailer`.'
|
23
|
-
SUPERCLASS = 'ApplicationMailer'
|
24
|
-
BASE_PATTERN = '(const (const nil? :ActionMailer) :Base)'
|
24
|
+
MSG = 'Mailers should subclass `ApplicationMailer`.'
|
25
|
+
SUPERCLASS = 'ApplicationMailer'
|
26
|
+
BASE_PATTERN = '(const (const nil? :ActionMailer) :Base)'
|
25
27
|
|
26
28
|
include RuboCop::Cop::EnforceSuperclass
|
27
29
|
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
module RuboCop
|
2
4
|
module Cop
|
3
5
|
module Salsify
|
@@ -19,9 +21,9 @@ module RuboCop
|
|
19
21
|
|
20
22
|
minimum_target_rails_version 5.0
|
21
23
|
|
22
|
-
MSG = 'Serializers should subclass `ApplicationSerializer`.'
|
23
|
-
SUPERCLASS = 'ApplicationSerializer'
|
24
|
-
BASE_PATTERN = '(const (const nil? :ActiveModel) :Serializer)'
|
24
|
+
MSG = 'Serializers should subclass `ApplicationSerializer`.'
|
25
|
+
SUPERCLASS = 'ApplicationSerializer'
|
26
|
+
BASE_PATTERN = '(const (const nil? :ActiveModel) :Serializer)'
|
25
27
|
|
26
28
|
include RuboCop::Cop::EnforceSuperclass
|
27
29
|
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
module RuboCop
|
2
4
|
module Cop
|
3
5
|
module Salsify
|
@@ -11,7 +13,7 @@ module RuboCop
|
|
11
13
|
# # bad
|
12
14
|
# User.unscoped
|
13
15
|
class RailsUnscoped < Cop
|
14
|
-
MSG = 'Explicitly remove scopes instead of using `unscoped`.'
|
16
|
+
MSG = 'Explicitly remove scopes instead of using `unscoped`.'
|
15
17
|
|
16
18
|
def_node_matcher :unscoped?, <<-PATTERN
|
17
19
|
(send _ :unscoped)
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
module RuboCop
|
2
4
|
module Cop
|
3
5
|
module Salsify
|
@@ -21,12 +23,12 @@ module RuboCop
|
|
21
23
|
include ConfigurableEnforcedStyle
|
22
24
|
|
23
25
|
SINGLE_QUOTE_MSG =
|
24
|
-
'Example Group/Example doc strings must be single-quoted.'
|
26
|
+
'Example Group/Example doc strings must be single-quoted.'
|
25
27
|
DOUBLE_QUOTE_MSG =
|
26
|
-
'Example Group/Example doc strings must be double-quoted.'
|
28
|
+
'Example Group/Example doc strings must be double-quoted.'
|
27
29
|
|
28
30
|
SHARED_EXAMPLES = RuboCop::RSpec::Language::SelectorSet.new(
|
29
|
-
|
31
|
+
[:include_examples, :it_behaves_like, :it_should_behave_like, :include_context]
|
30
32
|
).freeze
|
31
33
|
|
32
34
|
DOCUMENTED_METHODS = (RuboCop::RSpec::Language::ExampleGroups::ALL +
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
module RuboCop
|
2
4
|
module Cop
|
3
5
|
module Salsify
|
@@ -18,7 +20,7 @@ module RuboCop
|
|
18
20
|
class RspecDotNotSelfDot < Cop
|
19
21
|
|
20
22
|
SELF_DOT_REGEXP = /["']self\./.freeze
|
21
|
-
MSG = 'Use ".<class method>" instead of "self.<class method>" for example group description.'
|
23
|
+
MSG = 'Use ".<class method>" instead of "self.<class method>" for example group description.'
|
22
24
|
|
23
25
|
def_node_matcher :example_group_match, <<-PATTERN
|
24
26
|
(send _ #{RuboCop::RSpec::Language::ExampleGroups::ALL.node_pattern_union} $_ ...)
|
@@ -26,7 +28,7 @@ module RuboCop
|
|
26
28
|
|
27
29
|
def on_send(node)
|
28
30
|
example_group_match(node) do |doc|
|
29
|
-
add_offense(doc) if SELF_DOT_REGEXP
|
31
|
+
add_offense(doc) if SELF_DOT_REGEXP.match?(doc.source)
|
30
32
|
end
|
31
33
|
end
|
32
34
|
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
module RuboCop
|
2
4
|
module Cop
|
3
5
|
module Salsify
|
@@ -16,9 +18,9 @@ module RuboCop
|
|
16
18
|
DOCUMENTED_METHODS = RuboCop::Cop::Salsify::RspecDocString::DOCUMENTED_METHODS
|
17
19
|
|
18
20
|
SINGLE_QUOTE_MSG = 'Prefer single-quoted strings unless you need ' \
|
19
|
-
'interpolation or special symbols.'
|
21
|
+
'interpolation or special symbols.'
|
20
22
|
DOUBLE_QUOTE_MSG = 'Prefer double-quoted strings unless you need ' \
|
21
|
-
'single quotes to avoid extra backslashes for escaping.'
|
23
|
+
'single quotes to avoid extra backslashes for escaping.'
|
22
24
|
|
23
25
|
def autocorrect(node)
|
24
26
|
StringLiteralCorrector.correct(node, style)
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# This may be added in the near future to rubocop, see https://github.com/bbatsov/rubocop/issues/5332
|
2
4
|
|
3
5
|
module RuboCop
|
@@ -21,7 +23,7 @@ module RuboCop
|
|
21
23
|
|
22
24
|
minimum_target_ruby_version 2.3
|
23
25
|
|
24
|
-
MSG = 'Use `dig` for nested access.'
|
26
|
+
MSG = 'Use `dig` for nested access.'
|
25
27
|
|
26
28
|
def_node_matcher :nested_access_match, <<-PATTERN
|
27
29
|
(send (send (send _receiver !:[]) :[] !{irange erange}) :[] !{irange erange})
|
data/lib/salsify_rubocop.rb
CHANGED
data/salsify_rubocop.gemspec
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
lib = File.expand_path('lib', __dir__)
|
2
4
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
3
5
|
require 'salsify_rubocop/version'
|
@@ -28,10 +30,14 @@ Gem::Specification.new do |spec|
|
|
28
30
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
29
31
|
spec.require_paths = ['lib']
|
30
32
|
|
31
|
-
spec.
|
33
|
+
spec.required_ruby_version = '>= 2.4'
|
34
|
+
|
35
|
+
spec.add_development_dependency 'bundler', '~> 2.0'
|
32
36
|
spec.add_development_dependency 'rake', '~> 10.0'
|
33
37
|
spec.add_development_dependency 'rspec', '~> 3.0'
|
34
38
|
|
35
|
-
spec.add_runtime_dependency 'rubocop', '~> 0.
|
36
|
-
spec.add_runtime_dependency 'rubocop-
|
39
|
+
spec.add_runtime_dependency 'rubocop', '~> 0.85.0'
|
40
|
+
spec.add_runtime_dependency 'rubocop-performance', '~> 1.5.0'
|
41
|
+
spec.add_runtime_dependency 'rubocop-rails', '~> 2.4.0'
|
42
|
+
spec.add_runtime_dependency 'rubocop-rspec', '~> 1.37.0'
|
37
43
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: salsify_rubocop
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.85.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Salsify, Inc
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2020-06-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '
|
19
|
+
version: '2.0'
|
20
20
|
type: :development
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: '
|
26
|
+
version: '2.0'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: rake
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -58,28 +58,56 @@ dependencies:
|
|
58
58
|
requirements:
|
59
59
|
- - "~>"
|
60
60
|
- !ruby/object:Gem::Version
|
61
|
-
version: 0.
|
61
|
+
version: 0.85.0
|
62
62
|
type: :runtime
|
63
63
|
prerelease: false
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
65
65
|
requirements:
|
66
66
|
- - "~>"
|
67
67
|
- !ruby/object:Gem::Version
|
68
|
-
version: 0.
|
68
|
+
version: 0.85.0
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: rubocop-performance
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: 1.5.0
|
76
|
+
type: :runtime
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: 1.5.0
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: rubocop-rails
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - "~>"
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: 2.4.0
|
90
|
+
type: :runtime
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - "~>"
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: 2.4.0
|
69
97
|
- !ruby/object:Gem::Dependency
|
70
98
|
name: rubocop-rspec
|
71
99
|
requirement: !ruby/object:Gem::Requirement
|
72
100
|
requirements:
|
73
101
|
- - "~>"
|
74
102
|
- !ruby/object:Gem::Version
|
75
|
-
version: 1.
|
103
|
+
version: 1.37.0
|
76
104
|
type: :runtime
|
77
105
|
prerelease: false
|
78
106
|
version_requirements: !ruby/object:Gem::Requirement
|
79
107
|
requirements:
|
80
108
|
- - "~>"
|
81
109
|
- !ruby/object:Gem::Version
|
82
|
-
version: 1.
|
110
|
+
version: 1.37.0
|
83
111
|
description: Shared shared RuboCop configuration
|
84
112
|
email:
|
85
113
|
- engineering@salsify.com
|
@@ -127,15 +155,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
127
155
|
requirements:
|
128
156
|
- - ">="
|
129
157
|
- !ruby/object:Gem::Version
|
130
|
-
version: '
|
158
|
+
version: '2.4'
|
131
159
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
132
160
|
requirements:
|
133
161
|
- - ">="
|
134
162
|
- !ruby/object:Gem::Version
|
135
163
|
version: '0'
|
136
164
|
requirements: []
|
137
|
-
|
138
|
-
rubygems_version: 2.7.6
|
165
|
+
rubygems_version: 3.0.8
|
139
166
|
signing_key:
|
140
167
|
specification_version: 4
|
141
168
|
summary: Shared shared RuboCop configuration
|