rubocop-itsmycargo 0.2.2 → 0.2.3
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/CHANGELOG.md +1 -0
- data/config/base.yml +28 -0
- data/config/default.yml +2 -0
- data/lib/rubocop/itsmycargo/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5adc4bc1b7914170bf0e26c0d1f0253e1dfbd49be8bf1c77bd06284fdf2752d3
|
|
4
|
+
data.tar.gz: 1c76b0af35ab6d12485664d130f2f53b1cfeccbeedc3b0da174859d5accf553f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 00470acda29950a8aed89e1cbf6546aa17214d56ce6c7aee91fec944797db2bb4d5b616b225aac1ef48fad47d39654becf9233477794d8dd0ccbd9602a3ed024
|
|
7
|
+
data.tar.gz: 28d2270718f3e85cf3c4e05f675a821f47400b835e1131c5d1f640d3c183603812f4b0fa2fd9a46f5f09d11d0162faba2693f952a7650e38bfc1580109cfef41
|
data/CHANGELOG.md
CHANGED
data/config/base.yml
CHANGED
|
@@ -9,11 +9,39 @@ require:
|
|
|
9
9
|
inherit_gem:
|
|
10
10
|
standard: config/base.yml
|
|
11
11
|
|
|
12
|
+
Layout/EmptyLinesAroundAttributeAccessor:
|
|
13
|
+
Enabled: true
|
|
14
|
+
|
|
15
|
+
Layout/SpaceAroundMethodCallOperator:
|
|
16
|
+
Enabled: true
|
|
17
|
+
|
|
12
18
|
# Allow longer line length for bigger screens
|
|
13
19
|
Layout/LineLength:
|
|
14
20
|
Max: 120
|
|
15
21
|
StyleGuide: 'https://github.com/itsmycargo/rubocop-itsmycargo/blob/master/docs/Guide.adoc#maximum-line-length'
|
|
16
22
|
|
|
23
|
+
Lint/RaiseException:
|
|
24
|
+
Enabled: true
|
|
25
|
+
|
|
26
|
+
Lint/StructNewOverride:
|
|
27
|
+
Enabled: true
|
|
28
|
+
|
|
29
|
+
Style/ExponentialNotation:
|
|
30
|
+
Enabled: true
|
|
31
|
+
|
|
32
|
+
Style/HashEachMethods:
|
|
33
|
+
Enabled: true
|
|
34
|
+
|
|
35
|
+
Style/HashTransformKeys:
|
|
36
|
+
Enabled: true
|
|
37
|
+
|
|
38
|
+
Style/HashTransformValues:
|
|
39
|
+
Enabled: true
|
|
40
|
+
|
|
41
|
+
# TODO: Enable with Ruby2.6
|
|
42
|
+
Style/SlicingWithRange:
|
|
43
|
+
Enabled: false
|
|
44
|
+
|
|
17
45
|
Style/Documentation:
|
|
18
46
|
Enabled: false
|
|
19
47
|
StyleGuide: 'https://github.com/itsmycargo/rubocop-itsmycargo/blob/master/docs/Guide.adoc#classmodule-documentation'
|
data/config/default.yml
ADDED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rubocop-itsmycargo
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Mikko Kokkonen
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-05-
|
|
11
|
+
date: 2020-05-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rubocop
|
|
@@ -155,6 +155,7 @@ files:
|
|
|
155
155
|
- bin/console
|
|
156
156
|
- bin/setup
|
|
157
157
|
- config/base.yml
|
|
158
|
+
- config/default.yml
|
|
158
159
|
- config/legacy.yml
|
|
159
160
|
- config/rails.yml
|
|
160
161
|
- config/rspec.yml
|