Sha256: a4c83092893d0e871c04528137ca1864ce8b7ac69ee92ea15a47680475f1c25f

Contents?: true

Size: 1.1 KB

Versions: 60

Compression:

Stored size: 1.1 KB

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Lint
      # This cop checks to make sure `#to_json` includes an optional argument.
      # When overriding `#to_json`, callers may invoke JSON
      # generation via `JSON.generate(your_obj)`.  Since `JSON#generate` allows
      # for an optional argument, your method should too.
      #
      # @example
      #   # bad
      #   def to_json
      #   end
      #
      #   # good
      #   def to_json(*_args)
      #   end
      #
      class ToJSON < Cop
        MSG = ' `#to_json` requires an optional argument to be parsable ' \
          'via JSON.generate(obj).'

        def on_def(node)
          return unless node.method?(:to_json) && node.arguments.empty?

          add_offense(node)
        end

        def autocorrect(node)
          lambda do |corrector|
            # The following used `*_args` because `to_json(*args)` has
            # an offense of `Lint/UnusedMethodArgument` cop if `*args`
            # is not used.
            corrector.insert_after(node.loc.name, '(*_args)')
          end
        end
      end
    end
  end
end

Version data entries

60 entries across 41 versions & 5 rubygems

Version Path
grape-extra_validators-2.0.0 vendor/bundle/ruby/2.6.0/gems/rubocop-0.79.0/lib/rubocop/cop/lint/to_json.rb
rubocop-0.88.0 lib/rubocop/cop/lint/to_json.rb
rbhint-0.87.1.rc1 lib/rubocop/cop/lint/to_json.rb
rubocop-0.87.1 lib/rubocop/cop/lint/to_json.rb
rubocop-0.87.0 lib/rubocop/cop/lint/to_json.rb
rubocop-0.86.0 lib/rubocop/cop/lint/to_json.rb
files.com-1.0.1 vendor/bundle/ruby/2.5.0/gems/rubocop-0.85.1/lib/rubocop/cop/lint/to_json.rb
rbhint-0.85.1.rc2 lib/rubocop/cop/lint/to_json.rb
rbhint-0.85.1.rc1 lib/rubocop/cop/lint/to_json.rb
rubocop-0.85.1 lib/rubocop/cop/lint/to_json.rb
rbhint-0.8.5.rc1 lib/rubocop/cop/lint/to_json.rb
rubocop-0.85.0 lib/rubocop/cop/lint/to_json.rb
rubocop-0.84.0 lib/rubocop/cop/lint/to_json.rb
rubocop-0.83.0 lib/rubocop/cop/lint/to_json.rb
rubocop-0.82.0 lib/rubocop/cop/lint/to_json.rb
rubocop-0.81.0 lib/rubocop/cop/lint/to_json.rb
rubocop-0.80.1 lib/rubocop/cop/lint/to_json.rb
rubocop-0.80.0 lib/rubocop/cop/lint/to_json.rb
grape-extra_validators-1.0.0 vendor/bundle/ruby/2.4.0/gems/rubocop-0.79.0/lib/rubocop/cop/lint/to_json.rb
grape-extra_validators-1.0.0 vendor/bundle/ruby/2.6.0/gems/rubocop-0.79.0/lib/rubocop/cop/lint/to_json.rb