voxpupuli-rubocop 1.0.0 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/rubocop.yml +38 -0
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e9ab4128b503b130e78064619e8cb31a7ecab09c046fa177be6708272ed9e4ed
|
4
|
+
data.tar.gz: 1e24ae92660300fdbf835228c62805fe94a65c9be1fdbea088c7a4b98bedfe53
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d3bfa2baa913ef821861a1281975fdf00c282f5dc371c1720cf9cf807c650467bb0a29d9e49d08adbef1e46632da7ff6de2042e278827276d3e7494b47ed8af2
|
7
|
+
data.tar.gz: 96ac18130be6af35bbf7ccb414b56568f1e5c685076ad3c756f795322b31e16123fd8dafb23db2c99825963b37f1c13aa521e548b636ac9e9b48f0b6d82a0a5b
|
data/rubocop.yml
ADDED
@@ -0,0 +1,38 @@
|
|
1
|
+
---
|
2
|
+
require:
|
3
|
+
- rubocop-performance
|
4
|
+
- rubocop-rake
|
5
|
+
- rubocop-rspec
|
6
|
+
|
7
|
+
AllCops:
|
8
|
+
NewCops: enable
|
9
|
+
DisplayCopNames: true
|
10
|
+
ExtraDetails: true
|
11
|
+
DisplayStyleGuide: true
|
12
|
+
TargetRubyVersion: '2.7'
|
13
|
+
Exclude:
|
14
|
+
- vendor/**/*
|
15
|
+
- .vendor/**/*
|
16
|
+
|
17
|
+
# this currently doesn't work with the way we handle our secrets
|
18
|
+
Gemspec/RequireMFA:
|
19
|
+
Enabled: false
|
20
|
+
|
21
|
+
# current Vox Pupuli default is to use `add_development_dependency` in the gemspec
|
22
|
+
Gemspec/DevelopmentDependencies:
|
23
|
+
Enabled: false
|
24
|
+
|
25
|
+
Style/TrailingCommaInHashLiteral:
|
26
|
+
Enabled: True
|
27
|
+
EnforcedStyleForMultiline: consistent_comma
|
28
|
+
|
29
|
+
Style/TrailingCommaInArrayLiteral:
|
30
|
+
Enabled: True
|
31
|
+
EnforcedStyleForMultiline: consistent_comma
|
32
|
+
|
33
|
+
Style/TrailingCommaInArguments:
|
34
|
+
Enabled: True
|
35
|
+
EnforcedStyleForMultiline: comma
|
36
|
+
|
37
|
+
Metrics:
|
38
|
+
Enabled: false
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: voxpupuli-rubocop
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Vox Pupuli
|
@@ -96,6 +96,7 @@ extra_rdoc_files: []
|
|
96
96
|
files:
|
97
97
|
- lib/voxpupuli/rubocop.rb
|
98
98
|
- lib/voxpupuli/rubocop/rake.rb
|
99
|
+
- rubocop.yml
|
99
100
|
homepage: https://github.com/voxpupuli/voxpupuli-rubocop
|
100
101
|
licenses:
|
101
102
|
- Apache-2.0
|