dc-rubocop 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4) hide show
  1. checksums.yaml +7 -0
  2. data/dc-rubocop.gemspec +14 -0
  3. data/default.yml +22 -0
  4. metadata +60 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 9a6dbb2d0c3782db0457109da9cb9b5365300b3975d42edd1b1c3b3b4320ef61
4
+ data.tar.gz: b1153d95cfca2fcdf74aa999934443f574c77cec5c5d741670c3e3086688a605
5
+ SHA512:
6
+ metadata.gz: 764b4a70802aeb947094a870c5cd85c4f83bdcf79e91b963d2fd007fa3678308cb97f1d46987d3eb9622c6a1796ff414b3c4f2781a7d89a99a4b27b56b86233d
7
+ data.tar.gz: 6e1933121f05440c3547017b2ae1a934efa1b2f6f7d5e591476e7e2d3becef33ee3f049bd19386ec1e14f5c0a1dd63e2d40f59b6b9ced4ef4bf10bbb4e1e802a
@@ -0,0 +1,14 @@
1
+ Gem::Specification.new do |spec|
2
+ spec.name = "dc-rubocop"
3
+ spec.version = "0.0.1"
4
+ spec.summary = "Shared RuboCop config for DC projects"
5
+ spec.description = "Why spend 1 second copy-pasting when you can spend an hour creating a custom gem to share a RuboCop config"
6
+ spec.authors = ["David Crosby"]
7
+ spec.email = ["dave@dafyddcrosby.com"]
8
+ spec.homepage = "https://dafyddcrosby.com"
9
+ spec.license = "MIT"
10
+
11
+ spec.files = ['default.yml', 'dc-rubocop.gemspec']
12
+
13
+ spec.add_dependency "rubocop"
14
+ end
data/default.yml ADDED
@@ -0,0 +1,22 @@
1
+ AllCops:
2
+ SuggestExtensions: false
3
+
4
+ Layout/LineLength:
5
+ Max: 120
6
+
7
+ Metrics:
8
+ Enabled: false
9
+
10
+ Style/Documentation:
11
+ Enabled: false
12
+
13
+ Style/GuardClause:
14
+ Enabled: false
15
+
16
+ Style/StringLiterals:
17
+ Enabled: true
18
+ EnforcedStyle: double_quotes
19
+
20
+ Style/StringLiteralsInInterpolation:
21
+ Enabled: true
22
+ EnforcedStyle: double_quotes
metadata ADDED
@@ -0,0 +1,60 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: dc-rubocop
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - David Crosby
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2022-07-23 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rubocop
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ description: Why spend 1 second copy-pasting when you can spend an hour creating a
28
+ custom gem to share a RuboCop config
29
+ email:
30
+ - dave@dafyddcrosby.com
31
+ executables: []
32
+ extensions: []
33
+ extra_rdoc_files: []
34
+ files:
35
+ - dc-rubocop.gemspec
36
+ - default.yml
37
+ homepage: https://dafyddcrosby.com
38
+ licenses:
39
+ - MIT
40
+ metadata: {}
41
+ post_install_message:
42
+ rdoc_options: []
43
+ require_paths:
44
+ - lib
45
+ required_ruby_version: !ruby/object:Gem::Requirement
46
+ requirements:
47
+ - - ">="
48
+ - !ruby/object:Gem::Version
49
+ version: '0'
50
+ required_rubygems_version: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ requirements: []
56
+ rubygems_version: 3.3.7
57
+ signing_key:
58
+ specification_version: 4
59
+ summary: Shared RuboCop config for DC projects
60
+ test_files: []