Pattern: Inconsistent use of to_fs
/to_formatted_s
Issue: -
Checks for consistent uses of to_fs
or to_formatted_s
, depending on the cop's configuration.
# bad
time.to_formatted_s(:db)
# good
time.to_fs(:db)
# bad
time.to_fs(:db)
# good
time.to_formatted_s(:db)
Name | Default value | Configurable values |
---|---|---|
EnforcedStyle | to_fs |
to_fs , to_formatted_s |