foobara-rubocop-rules 1.0.11 → 1.0.13

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: cd35e596f9a119f55abd040464062c18c11fd0b6986931d0506940766f369798
4
- data.tar.gz: ae2e9ec10e72221158217aa9ef2f81145085540e29418644263879573d9d07ff
3
+ metadata.gz: f238d762986b1fb6c94db6a283a78768612ca22903e55cfee6593510022a2d68
4
+ data.tar.gz: 045d7daaaf2dccd324bbbd90c33d94dde6cbe1ab1805a448fbdbd7b966ffa4a5
5
5
  SHA512:
6
- metadata.gz: 3a186a2dad50d7fe55fc3670571362ce1ed960eea7f29cb41e5a419a6696e58a58f7c1d5968d7d3b9e050a99faa2ef06edd3ef15c5338e87bee3d30e0c70edaf
7
- data.tar.gz: 79fda86c31fcde254919e529be8b94ef13b38ce1e48118091449fc28d0797f0189736bab0adf128649849fe1cad0336c6e46bbe4e9f2769043f8d656fd465a16
6
+ metadata.gz: c4ec060e0b31b1d2bb4b601094b2c5df776c3e7566aebd922fe9879dab231c1af2ff608ae0123ce9396693d940e402666e32ea22bbb8fc8c12cf9d31b9146d4f
7
+ data.tar.gz: 142d4e0e496b20e5842e0b1e9c32781a7c0d23fb159943659dffffe42009e8fac0566fd6ae6f23def11a54e5359fcf83f70f1bda517dec270e2cb3bd2476e44f
data/CHANGELOG.md CHANGED
@@ -1,3 +1,11 @@
1
+ ## [1.0.13] - 2026-05-05
2
+
3
+ - Disable Style/OneClassPerFile as well as FrozenStringLiteralComment
4
+
5
+ ## [1.0.12] - 2026-02-26
6
+
7
+ - Disable Style/SelectByKind, Semicolon, and FormatString
8
+
1
9
  ## [1.0.11] - 2026-01-14
2
10
 
3
11
  - Disable RSpec/Output rule
data/rules/lint.yml CHANGED
@@ -1,6 +1,5 @@
1
1
  Lint/AmbiguousBlockAssociation:
2
- Exclude:
3
- - '**/spec/**/*'
2
+ Enabled: false
4
3
 
5
4
  Lint/EmptyClass:
6
5
  Enabled: false
data/rules/style.yml CHANGED
@@ -23,9 +23,11 @@ Style/EmptyMethod:
23
23
  Style/FetchEnvVar:
24
24
  Enabled: false
25
25
 
26
+ Style/FormatString:
27
+ Enabled: false
28
+
26
29
  Style/FrozenStringLiteralComment:
27
- SafeAutoCorrect: true
28
- EnforcedStyle: never
30
+ Enabled: false
29
31
 
30
32
  Style/GuardClause:
31
33
  Enabled: false
@@ -60,6 +62,9 @@ Style/NumericPredicate:
60
62
  Style/OptionalBooleanParameter:
61
63
  Enabled: false
62
64
 
65
+ Style/OneClassPerFile:
66
+ Enabled: false
67
+
63
68
  Style/PerlBackrefs:
64
69
  Enabled: false
65
70
 
@@ -75,6 +80,15 @@ Style/RegexpLiteral:
75
80
  Style/RescueStandardError:
76
81
  EnforcedStyle: implicit
77
82
 
83
+ Style/SafeNavigationChainLength:
84
+ Enabled: false
85
+
86
+ Style/SelectByKind:
87
+ Enabled: false
88
+
89
+ Style/Semicolon:
90
+ Enabled: false
91
+
78
92
  Style/SoleNestedConditional:
79
93
  Enabled: false
80
94
 
@@ -84,9 +98,6 @@ Style/StringLiterals:
84
98
  Style/StringLiteralsInInterpolation:
85
99
  Enabled: false
86
100
 
87
- Style/SafeNavigationChainLength:
88
- Enabled: false
89
-
90
101
  Style/SymbolArray:
91
102
  Enabled: false
92
103
 
data/version.rb CHANGED
@@ -1,6 +1,6 @@
1
1
  module Foobara
2
2
  module RubocopRules
3
- VERSION = "1.0.11".freeze
3
+ VERSION = "1.0.13".freeze
4
4
  MINIMUM_RUBY_VERSION = ">= 3.4.0".freeze
5
5
  end
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: foobara-rubocop-rules
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.11
4
+ version: 1.0.13
5
5
  platform: ruby
6
6
  authors:
7
7
  - Miles Georgi
@@ -80,7 +80,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
80
80
  - !ruby/object:Gem::Version
81
81
  version: '0'
82
82
  requirements: []
83
- rubygems_version: 3.6.9
83
+ rubygems_version: 4.0.6
84
84
  specification_version: 4
85
85
  summary: Common rubocop rules used in various foobara projects.
86
86
  test_files: []