Skip to content

Commit

Permalink
rubocop: Fix Layout/SpaceInsideReferenceBrackets
Browse files Browse the repository at this point in the history
  • Loading branch information
bastelfreak committed Feb 17, 2023
1 parent 260dd83 commit 110ec69
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 10 deletions.
9 changes: 0 additions & 9 deletions .rubocop_todo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,6 @@ Layout/MultilineMethodCallBraceLayout:
Exclude:
- 'test/common_test_suite_test.rb'

# Offense count: 2
# Cop supports --auto-correct.
# Configuration parameters: EnforcedStyle, EnforcedStyleForEmptyBrackets.
# SupportedStyles: space, no_space
# SupportedStylesForEmptyBrackets: space, no_space
Layout/SpaceInsideReferenceBrackets:
Exclude:
- 'json-schema.gemspec'

# Offense count: 1
Lint/AmbiguousBlockAssociation:
Exclude:
Expand Down
2 changes: 1 addition & 1 deletion json-schema.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Gem::Specification.new do |s|
s.email = '[email protected]'
s.homepage = 'http://github.com/voxpupuli/json-schema/'
s.summary = 'Ruby JSON Schema Validator'
s.files = Dir[ 'lib/**/*', 'resources/*.json' ]
s.files = Dir['lib/**/*', 'resources/*.json']
s.require_path = 'lib'
s.extra_rdoc_files = ['README.md', 'LICENSE.md']
s.required_ruby_version = '>= 2.5'
Expand Down

0 comments on commit 110ec69

Please sign in to comment.