rubocop-pleisto 1.0.0

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 +7 -0
  2. data/rubocop.yml +45 -0
  3. metadata +102 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 6e2ac2d45292fb7e9a798f30822bd2766ac33dafedcfadda11d7b4f22229b0f4
4
+ data.tar.gz: 6f6c3af0be42681468ea7ba2db69abc821225c54996bf460a4f4f61ec93cf6c3
5
+ SHA512:
6
+ metadata.gz: 3585314bf60c87f3892e62d4ae213b0dc60cdf9a378b2e3e7bfeacc04ac7cc6fbb3afba119e005ac6f3417bb418fd1ba8ddec24767362372d3ddf0f7334e28c9
7
+ data.tar.gz: 685a145eb15f660a06dcd05fc17341902a74987975a35c1eecd832434d01bfe46c821125c1bd054e004155752ecba2c985442d491f74d41e1e0ce24acc20c55e
data/rubocop.yml ADDED
@@ -0,0 +1,45 @@
1
+ require:
2
+ - rubocop-rspec
3
+ - rubocop-performance
4
+ inherit_gem:
5
+ rubocop-shopify: rubocop.yml
6
+ AllCops:
7
+ NewCops: enable
8
+ TargetRubyVersion: 3.1
9
+ UseCache: true
10
+
11
+ Layout/LineLength:
12
+ Max: 140
13
+
14
+ Style/StringLiterals:
15
+ EnforcedStyle: single_quotes
16
+
17
+ Style/StringLiteralsInInterpolation:
18
+ EnforcedStyle: single_quotes
19
+
20
+ Style/MethodCallWithArgsParentheses:
21
+ Enabled: false
22
+
23
+ RSpec/ExampleLength:
24
+ Enabled: false
25
+
26
+ RSpec/MultipleExpectations:
27
+ Enabled: false
28
+
29
+ RSpec/ContextWording:
30
+ Enabled: false
31
+
32
+ RSpec/FilePath:
33
+ Enabled: false
34
+
35
+ RSpec/RepeatedDescription:
36
+ Enabled: false
37
+
38
+ RSpec/LeakyConstantDeclaration:
39
+ Enabled: false
40
+
41
+ RSpec/VerifiedDoubles:
42
+ Enabled: false
43
+
44
+ Style/CaseEquality:
45
+ Enabled: false
metadata ADDED
@@ -0,0 +1,102 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rubocop-pleisto
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Pleisto Pte Ltd
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2022-06-18 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: '1.30'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '1.30'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rubocop-shopify
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '2.7'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '2.7'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rubocop-rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '2.11'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '2.11'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rubocop-performance
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '1.14'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '1.14'
69
+ description: Gem containing the rubocop.yml config that corresponds to the implementation
70
+ of the Brickdoc's style guide for Ruby.
71
+ email: public@pleisto.com
72
+ executables: []
73
+ extensions: []
74
+ extra_rdoc_files: []
75
+ files:
76
+ - rubocop.yml
77
+ homepage: https://github.com/pleisto/rubocop-pleisto
78
+ licenses:
79
+ - Apache-2.0
80
+ metadata:
81
+ source_code_uri: https://github.com/pleisto/rubocop-pleisto
82
+ allowed_push_host: https://rubygems.org
83
+ post_install_message:
84
+ rdoc_options: []
85
+ require_paths:
86
+ - lib
87
+ required_ruby_version: !ruby/object:Gem::Requirement
88
+ requirements:
89
+ - - ">="
90
+ - !ruby/object:Gem::Version
91
+ version: 3.0.0
92
+ required_rubygems_version: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ requirements: []
98
+ rubygems_version: 3.3.7
99
+ signing_key:
100
+ specification_version: 4
101
+ summary: Pleisto's style guide for Ruby.
102
+ test_files: []