rubocop-gem_dev 0.2.0 → 0.4.0
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/.rubocop.yml +5 -0
- data/config/rubocop.yml +16 -0
- data/lib/rubocop/gem_dev/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f5402aebc6fb1aaf9c8fafec3474bea7b2c6ebe24b03e444cd676c46947d308d
|
|
4
|
+
data.tar.gz: 5dfec0fd1682e2b066d930947747b0e70d080bbc1776289d0a76a83556789fe9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d9429e4ea83eed8fdee77dd133d7e10dee9e6307ef6811cd47fa308ef59eb3380ba4c6cd8e4ceb91886e4d2fa8c730d1f60b4f5f882a915557fc935452213b0b
|
|
7
|
+
data.tar.gz: a4cf0725098395d15dc3c29f94e15017d2b93b4d2892d4b24662fa724b4c3158a57e46c78f7a829764ebeea2937a52603be4e0c3cb1752f04be1f00d76b125e9
|
data/.rubocop.yml
CHANGED
data/config/rubocop.yml
CHANGED
|
@@ -3,11 +3,27 @@ AllCops:
|
|
|
3
3
|
Exclude:
|
|
4
4
|
- 'vendor/bundle/**/*'
|
|
5
5
|
|
|
6
|
+
# Items in Gemfile are dev dependencies and we don't have to specify versions.
|
|
7
|
+
Bundler/GemVersion:
|
|
8
|
+
Enabled: false
|
|
9
|
+
|
|
10
|
+
# ABC size 20 is pretty well-done actually.
|
|
11
|
+
Metrics/AbcSize:
|
|
12
|
+
Max: 20
|
|
13
|
+
|
|
14
|
+
# We usually have LICENSE file that describes copyright information.
|
|
15
|
+
Style/Copyright:
|
|
16
|
+
Enabled: false
|
|
17
|
+
|
|
6
18
|
# Double negation is a famous Ruby idiom,
|
|
7
19
|
# why not using it with confidence?
|
|
8
20
|
Style/DoubleNegation:
|
|
9
21
|
Enabled: false
|
|
10
22
|
|
|
23
|
+
# It's absolutely fine to use inline comments
|
|
24
|
+
Style/InlineComment:
|
|
25
|
+
Enabled: false
|
|
26
|
+
|
|
11
27
|
# Changing require order affects code execution
|
|
12
28
|
# This should not be a style cop
|
|
13
29
|
Style/RequireOrder:
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rubocop-gem_dev
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.4.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- OKURA Masafumi
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-
|
|
11
|
+
date: 2023-06-07 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: RuboCop configuration for gem development
|
|
14
14
|
email:
|