mirror of
https://github.com/inspec/inspec
synced 2024-11-23 05:03:07 +00:00
fix rubocop
This commit is contained in:
parent
ea63a39b40
commit
3850075609
1 changed files with 2 additions and 2 deletions
|
@ -74,7 +74,7 @@ class InspecCLI < Thor # rubocop:disable Metrics/ClassLength
|
|||
|
||||
desc 'check PATH', 'verify all tests at the specified PATH'
|
||||
option :format, type: :string
|
||||
def check(path)
|
||||
def check(path) # rubocop:disable Metrics/AbcSize
|
||||
diagnose
|
||||
o = opts.dup
|
||||
# configure_logger(o) # we do not need a logger for check yet
|
||||
|
@ -243,7 +243,7 @@ class InspecCLI < Thor # rubocop:disable Metrics/ClassLength
|
|||
|
||||
def headline(title)
|
||||
puts title
|
||||
title.each_char {|c| print '-' }
|
||||
title.each_char { print '-' }
|
||||
newline
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue