rubocop-coreyja 0.1 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/config/default.yml +20 -0
- data/lib/rubocop/coreyja/version.rb +1 -1
- metadata +2 -2
- data/config/coreyja.yml +0 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cc9783fdd905bffc3f23311bb3177f88c89e16684b01f9d1c7ea5abd96ef08b9
|
4
|
+
data.tar.gz: 3b2366f8490b31bcee855994b217c968db60860472313e1a5171ec1e0370e89c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0b9c555cc1bb23c5b4677af34b344cf8905e8fde69524965f5239bb7b61b0e2ac903d80e6ac05dd251e0ea8b15ff80e3085e268aca21927a81d255632a6ff2af
|
7
|
+
data.tar.gz: 21ece39f9a2bbfc4c20e52e3a55ff9dbe6353c4eea65804fb72bbc2592701a1b3321372a9e1fa3b8159a3e0263834c87acd5a781851457b8cf3932c090cc4fca
|
data/config/default.yml
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
require: rubocop-rspec
|
2
|
+
|
3
|
+
AllCops:
|
4
|
+
Exclude:
|
5
|
+
- 'vendor/**/*'
|
6
|
+
|
7
|
+
Metrics/ClassLength:
|
8
|
+
Exclude:
|
9
|
+
- 'spec/**/*'
|
10
|
+
|
11
|
+
Metrics/BlockLength:
|
12
|
+
Exclude:
|
13
|
+
- 'spec/**/*'
|
14
|
+
- '*.gemspec'
|
15
|
+
|
16
|
+
Metrics/LineLength:
|
17
|
+
Max: 120
|
18
|
+
|
19
|
+
Style/Documentation:
|
20
|
+
Enabled: false
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rubocop-coreyja
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Corey Alexander
|
@@ -103,7 +103,7 @@ extra_rdoc_files: []
|
|
103
103
|
files:
|
104
104
|
- LICENSE
|
105
105
|
- README.md
|
106
|
-
- config/
|
106
|
+
- config/default.yml
|
107
107
|
- lib/rubocop/coreyja.rb
|
108
108
|
- lib/rubocop/coreyja/version.rb
|
109
109
|
homepage: https://github.com/coreyja/rubocop-coreyja
|