rubocop-rails_config 1.3.1 → 1.4.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/config/rails.yml +1 -7
  3. metadata +3 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0ae9c4ff5cec5f0217a6bebb1a41777306e9f08286c37309cf12efaf2ab5fb80
4
- data.tar.gz: e56e643377db91b5068a0df977924588daa6aa75e71b302e81667447789410d8
3
+ metadata.gz: b7cbe998213f37bb1d8a2bea210a48c4ca3def1a5bdb53a9712b4a88dafa7885
4
+ data.tar.gz: a9240d9f2cfefb125b45d83f14d726e59f264e79b4b0a63afe46a501c91348b3
5
5
  SHA512:
6
- metadata.gz: 1e98b9407c67bebeb8aba7d8cd5283701c02d30da2531f936aac0d423d94901ec0c69b68bf308c8bad41adf1b5b0caaec087dda8159e1f0e5be813e994838d27
7
- data.tar.gz: dd9fd02132a431f8a663856212663747d918a9df1f226cd9a0c250b8002c217a6df28eff4405d16bf225421f50f51f47f7577c44b1f25b2cd9168112b6e9907a
6
+ metadata.gz: 35d4e7c7c605e50ba5e105d2bd594cd3f24ba3278ea08a1196c853ad714adbc17d4aae874c75817ca3a491c57edafb561c9daaa634abc0e01edd886e6c524576
7
+ data.tar.gz: 329550bc0b33d44ae4db47e7ca212d5845503abafd8893a87731d2f8adec2b915a44881d1209a2619c51c49d0db6745ca0e0ea5217134e87f9bc1f8d9e8e6fde
data/config/rails.yml CHANGED
@@ -4,8 +4,6 @@ require:
4
4
  - rubocop-rails
5
5
 
6
6
  AllCops:
7
- # rubocop-rails_config still supports Ruby 2.4
8
- TargetRubyVersion: 2.4
9
7
  # RuboCop has a bunch of cops enabled by default. This setting tells RuboCop
10
8
  # to ignore them, so only the ones explicitly set in this file are enabled.
11
9
  DisabledByDefault: true
@@ -20,8 +18,7 @@ AllCops:
20
18
  - '**/node_modules/**/*'
21
19
  # Additional exclude files by rubocop-rails_config
22
20
  - 'bin/**/*'
23
- - 'config/**/*'
24
- - 'db/**/*'
21
+ - 'db/schema.rb'
25
22
 
26
23
  Performance:
27
24
  Exclude:
@@ -94,9 +91,6 @@ Layout/EmptyLinesAroundModuleBody:
94
91
  Style/HashSyntax:
95
92
  Enabled: true
96
93
 
97
- Layout/FirstArgumentIndentation:
98
- Enabled: true
99
-
100
94
  # Method definitions after `private` or `protected` isolated calls need one
101
95
  # extra level of indentation.
102
96
  Layout/IndentationConsistency:
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubocop-rails_config
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.1
4
+ version: 1.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Toshimaru
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2021-02-17 00:00:00.000000000 Z
12
+ date: 2021-04-21 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rubocop
@@ -126,7 +126,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
126
126
  - !ruby/object:Gem::Version
127
127
  version: '0'
128
128
  requirements: []
129
- rubygems_version: 3.2.3
129
+ rubygems_version: 3.2.15
130
130
  signing_key:
131
131
  specification_version: 4
132
132
  summary: RuboCop configuration which has the same code style checking as official