foobara-rubocop-rules 1.0.1 → 1.0.2

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.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +4 -0
  3. data/rules/style.yml +5 -8
  4. data/version.rb +1 -1
  5. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: aabdb9cddb7ea7330c7ad7a9e43705aa46ccedc0cbc9bb60ac5ac616ddfad98b
4
- data.tar.gz: 2478a7562479e5ed14f7da1d124b65f2de25ece9d1b03f38e970c75ac6d11044
3
+ metadata.gz: c642fa7b845948e7e689505526a1d3ee8f9df92ae30ade308a2bda65e0a1a5cb
4
+ data.tar.gz: 191cb2a1839dd40f4d0c1e115f0572c593d1565b1655c18be88a8a8f26a19c0e
5
5
  SHA512:
6
- metadata.gz: 63d89e603393e4758a01de029f4947f3ba5baca15189de257ad1ecb08744dfeeb3952226be5cf1b19cddcb45470319426742059af1bb2eb7be5d04ca85ebdaf0
7
- data.tar.gz: 78802e197ec8d5e0c6e28e5d35a80323aea6f816286edc086372622be5d28293a6585485782d55c6b52810d9369297c84da906a581976ca45ed11bca0bf1bed1
6
+ metadata.gz: ec2a3650d66f53c2c927dcccc95af07e8422c36e5f42184d6cf632dbf608bce2f673bd5b3f85a731c13c32f4c634562a20882cc5569d0a1fc23a88927cb29956
7
+ data.tar.gz: c3b400839e3f49cc63a5dd8b18f1ea8b1388f295a8a13ecc1e78d6d92a2008f3f1cbf9fe85b6bd13f20b0c44614c0b1c6d8e1bd385f5c879df8f1e68bedf8579
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## [1.0.2] - 2025-09-05
2
+
3
+ - Disable Style/Lambda, StringLiterals..., SymbolArray, WordArray
4
+
1
5
  ## [1.0.1] - 2025-08-15
2
6
 
3
7
  - Disable Style/MultipleComparison to allow for some potential optimizations
data/rules/style.yml CHANGED
@@ -31,7 +31,7 @@ Style/IfUnlessModifier:
31
31
  Enabled: false
32
32
 
33
33
  Style/Lambda:
34
- EnforcedStyle: literal
34
+ Enabled: false
35
35
 
36
36
  Style/MultipleComparison:
37
37
  Enabled: false
@@ -61,19 +61,16 @@ Style/SoleNestedConditional:
61
61
  Enabled: false
62
62
 
63
63
  Style/StringLiterals:
64
- Enabled: true
65
- EnforcedStyle: double_quotes
64
+ Enabled: false
66
65
 
67
66
  Style/StringLiteralsInInterpolation:
68
- Enabled: true
69
- EnforcedStyle: double_quotes
67
+ Enabled: false
70
68
 
71
69
  Style/SafeNavigationChainLength:
72
70
  Enabled: false
73
71
 
74
- # turning these two off just to allow people to think about fewer aspects of Ruby syntax
75
72
  Style/SymbolArray:
76
- EnforcedStyle: brackets
73
+ Enabled: false
77
74
 
78
75
  Style/WordArray:
79
- EnforcedStyle: brackets
76
+ Enabled: false
data/version.rb CHANGED
@@ -1,6 +1,6 @@
1
1
  module Foobara
2
2
  module RubocopRules
3
- VERSION = "1.0.1".freeze
3
+ VERSION = "1.0.2".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.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Miles Georgi