module RuboCop::Cop::NilMethods
def nil_methods
def nil_methods nil.methods + other_stdlib_methods + whitelist end
def other_stdlib_methods
def other_stdlib_methods [:to_d] end
def whitelist
def whitelist cop_config['Whitelist'].map(&:to_sym) end