Sha256: 3e5a03566de35f07abde390beeaa777d350e346ea59d7072b1c0286703eb80d5
Contents?: true
Size: 1.32 KB
Versions: 24
Compression:
Stored size: 1.32 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.write(DOTFILE, description) puts "Writing new #{DOTFILE} to #{path}" STATUS_SUCCESS end end end end end end
Version data entries
24 entries across 22 versions & 4 rubygems