class RuboCop::Cop::InternalAffairs::CreateEmptyFile

Checks for uses of ‘create_file` with empty string second argument.

@example

# bad
create_file(path, '')

# good
create_empty_file(path)