foobara-rubocop-rules 0.0.7 → 0.0.9

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: b57419a52ae4a24d576ed05027a204bba47364444d9000b4545125f3f177a35b
4
- data.tar.gz: 3b92c500a99e8a5d64a0b4aa6ce162f0e59cb8e0a84fc6f985e707406ad181bc
3
+ metadata.gz: 01e5a5151ff71cb98acfae5d71587880d10027f04db25a36620ca1b4eb0548ac
4
+ data.tar.gz: ab2ec7306d688b7b1ae8553caa3321a0d593ec930ea8b871d8bfb1ff4f00e938
5
5
  SHA512:
6
- metadata.gz: 27fba5486bc26b0615a471f00fbf91c1522530a66cc578d2f29b814e4c53e7ada3ef8985a007fba9e256d5d3cbd112e5dee27457a86b825468fd48ddc489f009
7
- data.tar.gz: 00ec41234bdd0d74ae014c5b5e80633cf567c680c295a8b008dd4486a697624894f559eaf48224a0d3b3035499fa8a1cfe3b2abdaef1dfd06ed7583949a27d23
6
+ metadata.gz: b3d71c2cf9ccce8c74abf995c74b3c70118a6039bdbbad7b7171055c732737b0e47c6b7fac16d6a7e4eef7e678617ca926eb269d40a47748ce7ca08437886ba0
7
+ data.tar.gz: 8bbe099f840c57c9ca56f29381bbca555b19806dbe9b1321248967f747e73463b0a3de370b432a64c25c334707f1de42220f0384bc9a7246ae247bd4dbbfd70b
data/CHANGELOG.md CHANGED
@@ -1,3 +1,11 @@
1
+ ## [0.0.9] - 2025-05-03
2
+
3
+ - Let's just use normal arrays instead of %i and %w to reduce the amount of syntax in-use
4
+
5
+ ## [0.0.8] - 2025-03-18
6
+
7
+ - Turn off annoying useless assignment autocorrect
8
+
1
9
  ## [0.0.7] - 2025-02-16
2
10
 
3
11
  - Use plugins: instead of require: where possible to eliminate warnings
data/rules/lint.yml CHANGED
@@ -14,3 +14,6 @@ Lint/UnusedBlockArgument:
14
14
  Lint/UnusedMethodArgument:
15
15
  AutoCorrect: false
16
16
  AllowUnusedKeywordArguments: true
17
+
18
+ Lint/UselessAssignment:
19
+ AutoCorrect: false
data/rules/style.yml CHANGED
@@ -67,3 +67,10 @@ Style/StringLiteralsInInterpolation:
67
67
 
68
68
  Style/SafeNavigationChainLength:
69
69
  Enabled: false
70
+
71
+ # turning these two off just to allow people to think about fewer aspects of Ruby syntax
72
+ Style/SymbolArray:
73
+ EnforcedStyle: brackets
74
+
75
+ Style/WordArray:
76
+ EnforcedStyle: brackets
data/version.rb CHANGED
@@ -1,6 +1,6 @@
1
1
  module Foobara
2
2
  module RubocopRules
3
- VERSION = "0.0.7".freeze
3
+ VERSION = "0.0.9".freeze
4
4
 
5
5
  local_ruby_version = File.read("#{__dir__}/.ruby-version").chomp
6
6
  local_ruby_version_minor = local_ruby_version[/\A(\d+\.\d+)\.\d+\z/, 1]
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: foobara-rubocop-rules
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.7
4
+ version: 0.0.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Miles Georgi
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-02-16 00:00:00.000000000 Z
10
+ date: 2025-05-04 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: rubocop