rubocop-basic 0.1.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 +32 -0
  3. metadata +46 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: effe995a10133662bf55d847e239c8aa0efc9f7eb601ab6f2eece8555d7200fa
4
+ data.tar.gz: c3d979d02d358ba32066a1fd388c6ebbd8ec369e3a7a417802f54da792b5de06
5
+ SHA512:
6
+ metadata.gz: f110ab61fc01bd943c241a7297337899bb4715214b9153aedbe8d9985efca6af639056a1eeb8ab89438c0a6a0b13f6a7ce66ea5175ff03905a0c2151db7411b7
7
+ data.tar.gz: efb95ccefba78ee7eefd65406b1f8290c7982e0277802fcc21c122b847b694d9cc7bcec427677a7a6291adbd746e9a6ee461eeec296f98eca7897dc1b04d18fb
data/rubocop.yml ADDED
@@ -0,0 +1,32 @@
1
+ AllCops:
2
+ NewCops: enable
3
+
4
+ Layout/ArgumentAlignment:
5
+ EnforcedStyle: with_fixed_indentation
6
+
7
+ Layout/FirstArrayElementIndentation:
8
+ EnforcedStyle: consistent
9
+
10
+ Layout/FirstHashElementIndentation:
11
+ EnforcedStyle: consistent
12
+
13
+ Layout/LineEndStringConcatenationIndentation:
14
+ EnforcedStyle: indented
15
+
16
+ Layout/MultilineOperationIndentation:
17
+ EnforcedStyle: indented
18
+
19
+ Layout/MultilineMethodCallIndentation:
20
+ EnforcedStyle: indented
21
+
22
+ Layout/AccessModifierIndentation:
23
+ EnforcedStyle: outdent
24
+
25
+ Layout/ParameterAlignment:
26
+ EnforcedStyle: with_fixed_indentation
27
+
28
+ Style/TrailingCommaInArrayLiteral:
29
+ EnforcedStyleForMultiline: consistent_comma
30
+
31
+ Style/TrailingCommaInHashLiteral:
32
+ EnforcedStyleForMultiline: consistent_comma
metadata ADDED
@@ -0,0 +1,46 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rubocop-basic
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Kevin Sylvestre
8
+ bindir: bin
9
+ cert_chain: []
10
+ date: 2025-01-18 00:00:00.000000000 Z
11
+ dependencies: []
12
+ description: Swapping the most annoying defaults in rubocop.
13
+ email:
14
+ - kevin@ksylvest.com
15
+ executables: []
16
+ extensions: []
17
+ extra_rdoc_files: []
18
+ files:
19
+ - rubocop.yml
20
+ homepage: https://github.com/ksylvest/rubocop-basic
21
+ licenses:
22
+ - MIT
23
+ metadata:
24
+ rubygems_mfa_required: 'true'
25
+ homepage_uri: https://github.com/ksylvest/rubocop-basic
26
+ source_code_uri: https://github.com/ksylvest/rubocop-basic/tree/v0.1.0
27
+ changelog_uri: https://github.com/ksylvest/rubocop-basic/releases/tag/v0.1.0
28
+ documentation_uri: https://github.com/ksylvest/rubocop-basic
29
+ rdoc_options: []
30
+ require_paths:
31
+ - lib
32
+ required_ruby_version: !ruby/object:Gem::Requirement
33
+ requirements:
34
+ - - ">="
35
+ - !ruby/object:Gem::Version
36
+ version: 3.2.0
37
+ required_rubygems_version: !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - ">="
40
+ - !ruby/object:Gem::Version
41
+ version: '0'
42
+ requirements: []
43
+ rubygems_version: 3.6.2
44
+ specification_version: 4
45
+ summary: A basic rubocop.
46
+ test_files: []