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

Version Path
plaid-14.13.0 vendor/bundle/ruby/3.0.0/gems/rubocop-0.91.1/lib/rubocop/cli/command/init_dotfile.rb
plaid-14.12.1 vendor/bundle/ruby/3.0.0/gems/rubocop-0.91.1/lib/rubocop/cli/command/init_dotfile.rb
plaid-14.12.0 vendor/bundle/ruby/2.6.0/gems/rubocop-0.91.1/lib/rubocop/cli/command/init_dotfile.rb
plaid-14.11.1 vendor/bundle/ruby/2.6.0/gems/rubocop-0.91.1/lib/rubocop/cli/command/init_dotfile.rb
plaid-14.10.0 vendor/bundle/ruby/2.6.0/gems/rubocop-0.91.1/lib/rubocop/cli/command/init_dotfile.rb
plaid-14.7.0 vendor/bundle/ruby/2.6.0/gems/rubocop-0.91.1/lib/rubocop/cli/command/init_dotfile.rb
rubocop-1.12.1 lib/rubocop/cli/command/init_dotfile.rb
rubocop-1.12.0 lib/rubocop/cli/command/init_dotfile.rb
rubocop-1.11.0 lib/rubocop/cli/command/init_dotfile.rb
rubocop-1.10.0 lib/rubocop/cli/command/init_dotfile.rb
rubocop-1.9.1 lib/rubocop/cli/command/init_dotfile.rb
rubocop-1.9.0 lib/rubocop/cli/command/init_dotfile.rb
rubocop-1.8.1 lib/rubocop/cli/command/init_dotfile.rb
rubocop-1.8.0 lib/rubocop/cli/command/init_dotfile.rb
rubocop-1.7.0 lib/rubocop/cli/command/init_dotfile.rb
rubocop-1.6.1 lib/rubocop/cli/command/init_dotfile.rb
rubocop-1.6.0 lib/rubocop/cli/command/init_dotfile.rb
rubocop-1.5.2 lib/rubocop/cli/command/init_dotfile.rb
rubocop-1.5.1 lib/rubocop/cli/command/init_dotfile.rb
rubocop-1.5.0 lib/rubocop/cli/command/init_dotfile.rb