salsify_rubocop 0.78.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 +1 -1
- data/.travis.yml +0 -1
- data/CHANGELOG.md +6 -0
- data/Gemfile +2 -0
- data/Rakefile +2 -0
- data/conf/rubocop_without_rspec.yml +15 -4
- 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 +4 -2
- 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 +2 -0
- data/lib/salsify_rubocop/version.rb +3 -1
- data/salsify_rubocop.gemspec +5 -1
- metadata +6 -6
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,5 +1,11 @@
|
|
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
|
+
|
3
9
|
## v0.78.1
|
4
10
|
- Fix "`Style/SymbolArray` is concealed by line 190" warning
|
5
11
|
|
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
|
@@ -67,7 +76,7 @@ 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
|
@@ -152,10 +161,12 @@ Metrics/ClassLength:
|
|
152
161
|
Metrics/CyclomaticComplexity:
|
153
162
|
Enabled: false
|
154
163
|
|
155
|
-
# Disabling line length enforcement since annotate generates
|
156
|
-
# some pretty long lines
|
157
164
|
Layout/LineLength:
|
158
|
-
Enabled:
|
165
|
+
Enabled: true
|
166
|
+
Max: 120
|
167
|
+
IgnoreCopDirectives: true
|
168
|
+
IgnoredPatterns:
|
169
|
+
- ^#
|
159
170
|
|
160
171
|
Metrics/MethodLength:
|
161
172
|
Enabled: false
|
@@ -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,9 +23,9 @@ 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]
|
@@ -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,11 +30,13 @@ 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
|
|
33
|
+
spec.required_ruby_version = '>= 2.4'
|
34
|
+
|
31
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.
|
39
|
+
spec.add_runtime_dependency 'rubocop', '~> 0.85.0'
|
36
40
|
spec.add_runtime_dependency 'rubocop-performance', '~> 1.5.0'
|
37
41
|
spec.add_runtime_dependency 'rubocop-rails', '~> 2.4.0'
|
38
42
|
spec.add_runtime_dependency 'rubocop-rspec', '~> 1.37.0'
|
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: 2020-
|
11
|
+
date: 2020-06-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -58,14 +58,14 @@ 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
69
|
- !ruby/object:Gem::Dependency
|
70
70
|
name: rubocop-performance
|
71
71
|
requirement: !ruby/object:Gem::Requirement
|
@@ -155,14 +155,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
155
155
|
requirements:
|
156
156
|
- - ">="
|
157
157
|
- !ruby/object:Gem::Version
|
158
|
-
version: '
|
158
|
+
version: '2.4'
|
159
159
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
160
160
|
requirements:
|
161
161
|
- - ">="
|
162
162
|
- !ruby/object:Gem::Version
|
163
163
|
version: '0'
|
164
164
|
requirements: []
|
165
|
-
rubygems_version: 3.0.
|
165
|
+
rubygems_version: 3.0.8
|
166
166
|
signing_key:
|
167
167
|
specification_version: 4
|
168
168
|
summary: Shared shared RuboCop configuration
|