AutoFix RuboCop Style/ExpandPathArguments

This commit is contained in:
Pieter Oliver 2025-07-08 17:23:14 +01:00
parent b8d083142f
commit 086281a5e9
No known key found for this signature in database
GPG key ID: AAC5BA1478582D1F
2 changed files with 1 additions and 7 deletions

View file

@ -122,12 +122,6 @@ Style/CaseLikeIf:
Style/Documentation:
Enabled: false
# Offense count: 1
# This cop supports safe autocorrection (--autocorrect).
Style/ExpandPathArguments:
Exclude:
- 'grape_logging.gemspec'
# Offense count: 29
# This cop supports unsafe autocorrection (--autocorrect-all).
# Configuration parameters: EnforcedStyle.

View file

@ -1,4 +1,4 @@
lib = File.expand_path('../lib', __FILE__)
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'grape_logging/version'