rubocop-rubyfmt 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9f586cfd1ffc7386de88b57de617856b9167ead93e62265cddeb165daefa159d
4
- data.tar.gz: 852bed5eb157c8bebf8b48c47749923a92d510f6b96c8ca4f1faf1365b7c4b22
3
+ metadata.gz: d6930802812cb79361bb6ea15d28bc4eb5b6bce0b59f4f592db536227caeab37
4
+ data.tar.gz: e065ff2088a4911c39512d8e49b46bcddbd8b250cf291628b41b5c5ecf13763c
5
5
  SHA512:
6
- metadata.gz: 41819404358b145c83c7aab4c4beb1e911d0b00ec544e0a416856a3bd247ab8a392939a8c7440dcf71f280fd148bdcd6855df86fa14e10a70423841b4f4f83d5
7
- data.tar.gz: 0abe8016a1adad552574f0ed43f8e42764e847b85af68c1466ee9adebb9107c25d89cabf454704ee7301eea25e7383f597dc52c4c4e1fb416e07d9e0a5c882fd
6
+ metadata.gz: 17c71376ab536b063b31601b658febc56f6a7bfab4ad8ba6d5acdca168d096ea882ee5340903106c0770d1663a0697aae48b3121cfc84384b6d54552a4325395
7
+ data.tar.gz: 8c171234e0cdfa0ea0c03a3a65e5171cc4043ddf56372797adec9649dd5367c0f97dff6daf1705b3b9261d711aeff32efa3d859ee5549ce030646895230964ec
data/.rubocop.yml CHANGED
@@ -5,6 +5,7 @@ plugins:
5
5
  - rubocop-rspec
6
6
 
7
7
  AllCops:
8
+ TargetRubyVersion: 3.2.0
8
9
  NewCops: enable
9
10
 
10
11
  Naming/FileName:
data/CHANGELOG.md CHANGED
@@ -1,4 +1,10 @@
1
- # 0.1.0
1
+ # Changelog
2
+
3
+ ## 0.1.1
4
+
5
+ - Disabled `Style/QuotedSymbols`, since `rubyfmt` always double-quotes quoted symbols.
6
+
7
+ ## 0.1.0
2
8
 
3
9
  - Initial project setup
4
10
  - Add a custom lint for enforcing multiline rubocop disables
data/Rakefile CHANGED
@@ -1,5 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ require "bundler/gem_tasks"
3
4
  require "rubocop/rake_task"
4
5
 
5
6
  require "rspec/core/rake_task"
data/config/default.yml CHANGED
@@ -15,6 +15,8 @@ Style/StringLiterals:
15
15
  Enabled: false
16
16
  Style/StringLiteralsInInterpolation:
17
17
  Enabled: false
18
+ Style/QuotedSymbols: # Quoted symbols too!
19
+ Enabled: false
18
20
 
19
21
  # %Q/%q/% literals are transformed into quoted strings
20
22
  Style/PercentQLiterals:
@@ -34,7 +34,7 @@ module RuboCop
34
34
  extend AutoCorrector
35
35
 
36
36
  MSG = "Use multiline rubocop directives instead of end-of-line comments."
37
- DISABLE_PATTERN = /# rubocop:(disable|todo) .*/.freeze
37
+ DISABLE_PATTERN = /# rubocop:(disable|todo) .*/
38
38
 
39
39
  def on_new_investigation
40
40
  processed_source.comments.each do |comment|
@@ -2,6 +2,6 @@
2
2
 
3
3
  module RuboCop
4
4
  module Rubyfmt
5
- VERSION = "0.1.0"
5
+ VERSION = "0.1.1"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubocop-rubyfmt
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Reese Williams
@@ -74,7 +74,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
74
74
  requirements:
75
75
  - - ">="
76
76
  - !ruby/object:Gem::Version
77
- version: 2.7.0
77
+ version: 3.2.0
78
78
  required_rubygems_version: !ruby/object:Gem::Requirement
79
79
  requirements:
80
80
  - - ">="