rubocop-infinum 0.2.0 → 0.3.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e5c8e19a8916b5446cdf098b6094cd4bb08c1073b31d02ca88486dfb6df859a4
4
- data.tar.gz: 6a027d4cb75b5b1d42de1c006714d961480278ca90c978c01fa6265f00baaa84
3
+ metadata.gz: bef0aacf541f51bc823409584a2e1a63092c6778e60965f75f237549b8bc4fc5
4
+ data.tar.gz: c8f072eae9fa8f5954e6114390d6129863cec2377c9d7b3a4235ff1dc159ab05
5
5
  SHA512:
6
- metadata.gz: f23d5be56f21881e24f7315956916d7509cdc0e52e353ff88e0eabd84a37a67b8114a30ccb1561498f283c1c5a4c6d740bc642577df5c4c2b193ebbbaa0379d1
7
- data.tar.gz: bb7f56bddbf4a4ca8c7a8cfa4f751a87859260a9542ef7e675d979b786fe31f231a46b3fd0489898a40146a556e9162e4920a4e910d7c29d1d61a79e89494596
6
+ metadata.gz: ce24d80185cb1b9aa639b7ba2779cbfc54b8712f590baf2159d5869ca590fa30d485bd548863ac0124ef3c8d1caa301b45348664a859d950c52a8f4680e4fa77
7
+ data.tar.gz: 9ea8c0b301e532b7bde66f290764906eccb48b944808d450c15a06713ba3c91ca9bd899b51cf6e47927a052f0451b66ad3c8829f950fc927ec26a628f9376d9f
@@ -6,14 +6,16 @@ Layout/LineLength:
6
6
  Max: 120
7
7
  IgnoredPatterns: ['\A#']
8
8
 
9
- Metrics/BlockLength:
10
- Exclude:
11
- - 'spec/**/*_spec.rb'
12
-
13
- Style/Documentation:
9
+ Naming/InclusiveLanguage:
14
10
  Enabled: false
15
11
 
16
- Style/FrozenStringLiteralComment:
12
+ Rails:
13
+ Enabled: true
14
+
15
+ RSpec/ExampleLength:
16
+ Max: 10
17
+
18
+ Style/Documentation:
17
19
  Enabled: false
18
20
 
19
21
  Style/WordArray:
@@ -31,11 +33,9 @@ Style/HashTransformKeys:
31
33
  Style/HashTransformValues:
32
34
  Enabled: true
33
35
 
34
- Rails:
35
- Enabled: true
36
-
37
- RSpec/ExampleLength:
38
- Max: 10
36
+ Metrics/BlockLength:
37
+ Exclude:
38
+ - 'spec/**/*_spec.rb'
39
39
 
40
40
  AllCops:
41
41
  TargetRubyVersion: 2.5
@@ -44,4 +44,5 @@ AllCops:
44
44
  - 'db/migrate/*.rb'
45
45
  - 'config/**/*.rb'
46
46
  - 'vendor/bundle/**/*'
47
+ - 'node_modules/**/*'
47
48
  NewCops: enable
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # RuboCop Infinum Change Log
2
2
 
3
+ ## 0.3.0 (Aug 20th, 2021)
4
+
5
+ - Rename config file to .infinum.yml (fixes inheriting configuration)
6
+
3
7
  ## 0.2.0 (Jul 24th, 2021)
4
8
 
5
9
  - Increase max line length to 120 chars and exclude comment lines
data/README.md CHANGED
@@ -12,7 +12,7 @@ And add to the top of your project's RuboCop configuration file:
12
12
 
13
13
  ~~~yml
14
14
  inherit_gem:
15
- rubocop-infinum: .rubocop.yml
15
+ rubocop-infinum: .infinum.yml
16
16
 
17
17
  require: rubocop-infinum
18
18
  ~~~
@@ -2,6 +2,6 @@
2
2
 
3
3
  module RuboCop
4
4
  module Infinum
5
- VERSION = '0.2.0'
5
+ VERSION = '0.3.0'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubocop-infinum
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Marko Ćilimković
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: exe
11
11
  cert_chain: []
12
- date: 2021-07-24 00:00:00.000000000 Z
12
+ date: 2021-08-20 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: pry-byebug
@@ -89,8 +89,8 @@ extensions: []
89
89
  extra_rdoc_files: []
90
90
  files:
91
91
  - ".gitignore"
92
+ - ".infinum.yml"
92
93
  - ".rspec"
93
- - ".rubocop.yml"
94
94
  - ".ruby-version"
95
95
  - CHANGELOG.md
96
96
  - Gemfile