Sha256: 1f3438fdd6bc5331320dc53fac4629510a47cf5525f5c1d54788d5b3c95c0edc
Contents?: true
Size: 1.36 KB
Versions: 35
Compression:
Stored size: 1.36 KB
Contents
# frozen_string_literal: true module RuboCop class CLI module Command # Generate a .rubocop.yml file in the current directory. # @api private class InitDotfile < Base DOTFILE = ConfigLoader::DOTFILE self.command_name = :init def run path = File.expand_path(DOTFILE) if File.exist?(DOTFILE) warn Rainbow("#{DOTFILE} already exists at #{path}").red STATUS_ERROR else description = <<~DESC # The behavior of RuboCop can be controlled via the .rubocop.yml # configuration file. It makes it possible to enable/disable # certain cops (checks) and to alter their behavior if they accept # any parameters. The file can be placed either in your home # directory or in some project directory. # # RuboCop will start looking for the configuration file in the directory # where the inspected file is and continue its way up to the root directory. # # See https://docs.rubocop.org/rubocop/configuration DESC File.open(DOTFILE, 'w') do |f| f.write(description) end puts "Writing new #{DOTFILE} to #{path}" STATUS_SUCCESS end end end end end end
Version data entries
35 entries across 35 versions & 3 rubygems