rubocop-hk 1.2.0 → 1.2.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 +4 -4
- data/README.md +56 -3758
- data/config/default.yml +5 -3
- data/lib/rubocop/hk/version.rb +2 -1
- data/lib/rubocop-hk.rb +5 -0
- metadata +2 -1
data/config/default.yml
CHANGED
@@ -41,9 +41,6 @@ AllCops:
|
|
41
41
|
rubocop-minitest: true
|
42
42
|
rubocop-capybara: true
|
43
43
|
|
44
|
-
Rails:
|
45
|
-
Enabled: true
|
46
|
-
|
47
44
|
# Modern plugin architecture (RuboCop 1.72+)
|
48
45
|
plugins:
|
49
46
|
- rubocop-rails
|
@@ -60,3 +57,8 @@ inherit_from:
|
|
60
57
|
- rubocop-style.yml
|
61
58
|
- rubocop-performance.yml
|
62
59
|
|
60
|
+
# Gem entry point file exception (must match gem name)
|
61
|
+
Naming/FileName:
|
62
|
+
Exclude:
|
63
|
+
- "lib/rubocop-hk.rb"
|
64
|
+
|
data/lib/rubocop/hk/version.rb
CHANGED
data/lib/rubocop-hk.rb
ADDED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rubocop-hk
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.2.
|
4
|
+
version: 1.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Hammad Khan
|
@@ -96,6 +96,7 @@ files:
|
|
96
96
|
- config/rubocop-rails.yml
|
97
97
|
- config/rubocop-rspec.yml
|
98
98
|
- config/rubocop-style.yml
|
99
|
+
- lib/rubocop-hk.rb
|
99
100
|
- lib/rubocop/hk.rb
|
100
101
|
- lib/rubocop/hk/command.rb
|
101
102
|
- lib/rubocop/hk/version.rb
|