r7kamura / rspec-json_matcher

RSpec matcher for testing JSON string
MIT License
171 stars 10 forks source link

Auto-correct Lint/UnifiedInteger #26

Closed github-actions[bot] closed 2 years ago

github-actions[bot] commented 2 years ago

Summary

Auto-corrected Lint/UnifiedInteger.

Details

Lint/UnifiedInteger

This cop checks for using Fixnum or Bignum constant.

Examples


# bad

1.is_a?(Fixnum)
1.is_a?(Bignum)

# good

1.is_a?(Integer)

Note

This pull request was generated by rubocop_todo_corrector.