rubocop-inst 1.2.1 → 1.2.3

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 (3) hide show
  1. checksums.yaml +4 -4
  2. data/rubocop.yml +3 -4
  3. metadata +3 -17
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0275cad5f4761e78de543b7be9ae3c08a5f80335da78097aa307e8ffa6196de5
4
- data.tar.gz: bf1b9a99717ead088a67cd9090b8fdc53acfd49c3f12bb3733692db4f75ffbe7
3
+ metadata.gz: 36876bbcfb2290931e2b9f4f4b171cd77ec4ccab8930067b7b95784a5b867f76
4
+ data.tar.gz: 31f702215170975f003e78cf3a7e6c5b2b76f8cceb4e9230fce61464cf75be40
5
5
  SHA512:
6
- metadata.gz: 9b0052efbaea86021cf0de4171fd43baa42e1d69325641c369dfe02eb17b63a602aba38f4d894977605453694f7acae375f567ded854104b8823725881bc366b
7
- data.tar.gz: 99c9c304ba9860568886b0b630ab19c28c5d8b252194676f207e27366833c8246df09b4b09148926d9b1c1417c117bc9cc6561f9d9aff58dcc8523dfad291deb
6
+ metadata.gz: adea5c2edeec4113d95947c16a735cd12e80284363707e4d64ebaae82cdffb32a9494de783a8f200916941228dac4f29bb8881fbd20aa5d4661e60f13762bd0f
7
+ data.tar.gz: 0c8c25460906243910157cd22b45c8fff2c8e71edfbb77b9bb3c85f2dccb601884f5ca027bc2a9f838cfed7577bf03e2df5335f11fb7e04b82d0ff38ddfe498b
data/rubocop.yml CHANGED
@@ -7,9 +7,6 @@ AllCops:
7
7
  - node_modules/**/*
8
8
  - vendor/**/*
9
9
 
10
- Gemspec/DevelopmentDependencies:
11
- EnforcedStyle: gemspec
12
-
13
10
  Layout/MultilineArrayLineBreaks:
14
11
  Enabled: true
15
12
  Layout/MultilineHashKeyLineBreaks:
@@ -35,7 +32,7 @@ Naming/HeredocDelimiterNaming:
35
32
  # negative regex - these are the _allowed_ delimiters
36
33
  # any you add should describe the format of the data, not describe
37
34
  # what the data is for. this allows editors to syntax highlight
38
- - ^(?!AST|BASE64|CSV|GQL|HTML|JINJA|JS|MD|PEM|REGEX|RUBY|SH|SQL|SRT|TEXT|TF|XML|YAML|PATTERN).+$
35
+ - ^(?!AST|BASE64|CSV|ERB|GQL|HTML|JINJA|JS|MD|PEM|REGEX|RUBY|SH|SQL|SRT|TEXT|TF|XML|YAML|PATTERN).+$
39
36
 
40
37
  Performance/Casecmp:
41
38
  Enabled: false # casecmp(other).zero? is a bad suggestion because it's not Unicode-aware (also it's less clear)
@@ -46,6 +43,8 @@ Style/DateTime:
46
43
  Enabled: true
47
44
  Style/EmptyElse:
48
45
  EnforcedStyle: empty # explicit nil indicates programmer intent
46
+ Style/FetchEnvVar:
47
+ Enabled: false # ENV is a hash, and should be treated as such (including checking if a key exists, if you care)
49
48
  Style/FormatStringToken:
50
49
  EnforcedStyle: template
51
50
  Style/HashSyntax:
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubocop-inst
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.1
4
+ version: 1.2.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Cody Cutrer
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-03-15 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: rubocop
@@ -43,20 +43,6 @@ dependencies:
43
43
  - - "~>"
44
44
  - !ruby/object:Gem::Version
45
45
  version: '1.24'
46
- - !ruby/object:Gem::Dependency
47
- name: rubocop-rake
48
- requirement: !ruby/object:Gem::Requirement
49
- requirements:
50
- - - "~>"
51
- - !ruby/object:Gem::Version
52
- version: '0.7'
53
- type: :development
54
- prerelease: false
55
- version_requirements: !ruby/object:Gem::Requirement
56
- requirements:
57
- - - "~>"
58
- - !ruby/object:Gem::Version
59
- version: '0.7'
60
46
  description: Shared Rubocop configuration for all Instructure Ruby projects
61
47
  email:
62
48
  - cody@instructure.com
@@ -86,7 +72,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
86
72
  - !ruby/object:Gem::Version
87
73
  version: '0'
88
74
  requirements: []
89
- rubygems_version: 3.6.2
75
+ rubygems_version: 3.6.9
90
76
  specification_version: 4
91
77
  summary: Rubocop Config for Instructure
92
78
  test_files: []