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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3e63544cfc9c89758f9ae768f2871390139baaf7d68bb6aed13c969e3786ac35
4
- data.tar.gz: aa489bde20b210cc49397909a7a96c33a5e4dab903251af362d8f0328b86b6ac
3
+ metadata.gz: 5adc4bc1b7914170bf0e26c0d1f0253e1dfbd49be8bf1c77bd06284fdf2752d3
4
+ data.tar.gz: 1c76b0af35ab6d12485664d130f2f53b1cfeccbeedc3b0da174859d5accf553f
5
5
  SHA512:
6
- metadata.gz: 8b450f374fa08076cc2ab30e97355443c314dfbd30015bb48fdcc54a8c999b75dc10d376e617074b45599de7ae77449e5c65eeb59bf3c6f9c486d1766b9204f6
7
- data.tar.gz: 40230e7e58f59a9fbdbc39f946c70349d8022ddd2e311d05b175db356f9a408e429be6ea7ecf9936b24e8ade3009d6429762e80a4de3716ca3bc2426229c2085
6
+ metadata.gz: 00470acda29950a8aed89e1cbf6546aa17214d56ce6c7aee91fec944797db2bb4d5b616b225aac1ef48fad47d39654becf9233477794d8dd0ccbd9602a3ed024
7
+ data.tar.gz: 28d2270718f3e85cf3c4e05f675a821f47400b835e1131c5d1f640d3c183603812f4b0fa2fd9a46f5f09d11d0162faba2693f952a7650e38bfc1580109cfef41
data/CHANGELOG.md CHANGED
@@ -1,4 +1,5 @@
1
1
  ### Next
2
+ ### v0.2.3-alpha-alpha-alpha-rc-rc - 2020-05-12
2
3
  ### v0.2.2-alpha-alpha-alpha-rc-rc - 2020-05-06
3
4
  ### v0.2.1-alpha-alpha-alpha-rc-rc - 2020-05-06
4
5
  <<<<<<< HEAD
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'
@@ -0,0 +1,2 @@
1
+ inherit_from:
2
+ - ./legacy.yml
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Rubocop
4
4
  module Itsmycargo
5
- VERSION = "0.2.2"
5
+ VERSION = "0.2.3"
6
6
  end
7
7
  end
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.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-06 00:00:00.000000000 Z
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