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

Version Path
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/rubocop-1.26.0/lib/rubocop/cli/command/init_dotfile.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/rubocop-1.31.2/lib/rubocop/cli/command/init_dotfile.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/rubocop-1.26.0/lib/rubocop/cli/command/init_dotfile.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/rubocop-1.31.2/lib/rubocop/cli/command/init_dotfile.rb
rubocop-1.32.0 lib/rubocop/cli/command/init_dotfile.rb
rubocop-1.31.2 lib/rubocop/cli/command/init_dotfile.rb
rubocop-1.31.1 lib/rubocop/cli/command/init_dotfile.rb
rubocop-1.31.0 lib/rubocop/cli/command/init_dotfile.rb
rubocop-1.30.1 lib/rubocop/cli/command/init_dotfile.rb
rubocop-1.30.0 lib/rubocop/cli/command/init_dotfile.rb
rubocop-1.29.1 lib/rubocop/cli/command/init_dotfile.rb
rubocop-1.29.0 lib/rubocop/cli/command/init_dotfile.rb
rubocop-1.28.2 lib/rubocop/cli/command/init_dotfile.rb
rubocop-1.28.1 lib/rubocop/cli/command/init_dotfile.rb
rubocop-1.28.0 lib/rubocop/cli/command/init_dotfile.rb
rubocop-1.27.0 lib/rubocop/cli/command/init_dotfile.rb
rubocop-1.26.1 lib/rubocop/cli/command/init_dotfile.rb
op_connect-0.1.2 vendor/bundle/ruby/3.1.0/gems/rubocop-1.26.0/lib/rubocop/cli/command/init_dotfile.rb
rubocop-1.26.0 lib/rubocop/cli/command/init_dotfile.rb
rubocop-1.25.1 lib/rubocop/cli/command/init_dotfile.rb