rubocop-standard 5.0.0 → 5.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +5 -1
- data/config/default.yml +41 -1
- data/config/minitest.yml +3 -0
- metadata +22 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 71f21623d90a90077e90041b1d6e40482d12bca2a6b6d71eff00f9e58afa0a87
|
4
|
+
data.tar.gz: 335df090766fddd40815805d64740de67af592293230c966a4090675916c59c9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 718d37ebea56c4fe4cf92ed1d5ac8f548bf24019a7c7bb18a509e54f87a7395b56407a311ac60ebd9d466b5c2483f70125666d5976c474f23223a29930f50bc1
|
7
|
+
data.tar.gz: 100cd4e9843896164b74e244e6b6799e72ca41e9b05422995d43f57738c15046187ab85ffadff29c0faf103dbcbce02575b2e35ebea09ef6a15cef7339f0ebb7
|
data/README.md
CHANGED
@@ -1,6 +1,10 @@
|
|
1
1
|
# RuboCop Standard
|
2
2
|
|
3
|
-
This repository enables all the recommended RuboCop configurations.
|
3
|
+
This repository enables all the recommended RuboCop configurations, but disables the overly aggressive ones.
|
4
|
+
|
5
|
+
## What's "overly aggressive"?
|
6
|
+
|
7
|
+
You know, all the ones about line length, method complexity, requiring documentation, etc.
|
4
8
|
|
5
9
|
## Installation
|
6
10
|
|
data/config/default.yml
CHANGED
@@ -1,5 +1,6 @@
|
|
1
1
|
require:
|
2
2
|
- rubocop-performance
|
3
|
+
- rubocop-rake
|
3
4
|
|
4
5
|
AllCops:
|
5
6
|
NewCops: enable
|
@@ -9,7 +10,46 @@ AllCops:
|
|
9
10
|
- db/migrate/*.rb
|
10
11
|
- node_modules/**/*
|
11
12
|
- tmp/**/*
|
12
|
-
- vendor
|
13
|
+
- vendor/**/*
|
14
|
+
|
15
|
+
Layout/LineLength:
|
16
|
+
Enabled: false
|
17
|
+
|
18
|
+
Metrics/AbcSize:
|
19
|
+
Enabled: false
|
20
|
+
|
21
|
+
Metrics/BlockLength:
|
22
|
+
Enabled: false
|
23
|
+
|
24
|
+
Metrics/BlockNesting:
|
25
|
+
Enabled: false
|
26
|
+
|
27
|
+
Metrics/ClassLength:
|
28
|
+
Enabled: false
|
29
|
+
|
30
|
+
Metrics/CyclomaticComplexity:
|
31
|
+
Enabled: false
|
32
|
+
|
33
|
+
Metrics/MethodLength:
|
34
|
+
Enabled: false
|
35
|
+
|
36
|
+
Metrics/ModuleLength:
|
37
|
+
Enabled: false
|
38
|
+
|
39
|
+
Metrics/ParameterLists:
|
40
|
+
Enabled: false
|
41
|
+
|
42
|
+
Metrics/PerceivedComplexity:
|
43
|
+
Enabled: false
|
44
|
+
|
45
|
+
Rake/Desc:
|
46
|
+
Enabled: false
|
47
|
+
|
48
|
+
Style/ClassAndModuleChildren:
|
49
|
+
Enabled: false
|
50
|
+
|
51
|
+
Style/AccessModifierDeclarations:
|
52
|
+
Enabled: false
|
13
53
|
|
14
54
|
Style/Documentation:
|
15
55
|
Enabled: false
|
data/config/minitest.yml
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rubocop-standard
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 5.
|
4
|
+
version: 5.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Garen Torikian
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-12-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rubocop
|
@@ -66,6 +66,20 @@ dependencies:
|
|
66
66
|
- - ">="
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: '0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: rubocop-rake
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ">="
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
type: :runtime
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - ">="
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
69
83
|
- !ruby/object:Gem::Dependency
|
70
84
|
name: rake
|
71
85
|
requirement: !ruby/object:Gem::Requirement
|
@@ -80,7 +94,8 @@ dependencies:
|
|
80
94
|
- - ">="
|
81
95
|
- !ruby/object:Gem::Version
|
82
96
|
version: '0'
|
83
|
-
description:
|
97
|
+
description: Enables all the RuboCop recommendations (with the overly aggressive ones
|
98
|
+
disabled).
|
84
99
|
email:
|
85
100
|
- gjtorikian@gmail.com
|
86
101
|
executables: []
|
@@ -96,7 +111,7 @@ homepage: https://github.com/gjtorikian/rubocop-standard
|
|
96
111
|
licenses:
|
97
112
|
- MIT
|
98
113
|
metadata: {}
|
99
|
-
post_install_message:
|
114
|
+
post_install_message:
|
100
115
|
rdoc_options: []
|
101
116
|
require_paths:
|
102
117
|
- lib
|
@@ -111,8 +126,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
111
126
|
- !ruby/object:Gem::Version
|
112
127
|
version: '0'
|
113
128
|
requirements: []
|
114
|
-
rubygems_version: 3.1.
|
115
|
-
signing_key:
|
129
|
+
rubygems_version: 3.1.4
|
130
|
+
signing_key:
|
116
131
|
specification_version: 4
|
117
132
|
summary: RuboCop Standard
|
118
133
|
test_files: []
|