Sha256: 1f9a6a6ba6ed55df02c082c394c933c2bee2cd4a39ac3a85ebba7ad4ba699233

Contents?: true

Size: 1.34 KB

Versions: 7

Compression:

Stored size: 1.34 KB

Contents

# frozen_string_literal: true

module RuboCop
  class CLI
    module Command
      # Generate a .rubocop.yml file in the current directory.
      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

7 entries across 7 versions & 2 rubygems

Version Path
rubocop-0.89.1 lib/rubocop/cli/command/init_dotfile.rb
rubocop-0.89.0 lib/rubocop/cli/command/init_dotfile.rb
rubocop-0.88.0 lib/rubocop/cli/command/init_dotfile.rb
rbhint-0.87.1.rc1 lib/rubocop/cli/command/init_dotfile.rb
rubocop-0.87.1 lib/rubocop/cli/command/init_dotfile.rb
rubocop-0.87.0 lib/rubocop/cli/command/init_dotfile.rb
rubocop-0.86.0 lib/rubocop/cli/command/init_dotfile.rb