Ruby Rubocop

PHOTO EMBED

Wed Apr 12 2023 15:36:40 GMT+0000 (Coordinated Universal Time)

Saved by @chelobotix #rubyrubocop

Add this line to the Gemfile
gem 'rubocop', '>= 1.0', '< 2.0'

rubocop -A
rubocop --only Style/StringLiterals -A

//disable in file

# rubocop:disable all

module TempTask
  ...
end

# rubocop:enable all
content_copyCOPY