# Naming configuration overrides # https://docs.rubocop.org/rubocop/1.5/cops_lint.html Naming/AccessorMethodName: Description: Check the naming of accessor methods for get_/set_. Enabled: false Naming/AsciiIdentifiers: Description: 'Use only ascii symbols in identifiers.' StyleGuide: 'https://github.com/rubocop/ruby-style-guide#english-identifiers' Enabled: false Naming/BinaryOperatorParameterName: Description: 'When defining binary operators, name the argument other.' StyleGuide: 'https://github.com/rubocop/ruby-style-guide#other-arg' Enabled: false Naming/FileName: Description: 'Use snake_case for source file names.' StyleGuide: 'https://github.com/rubocop/ruby-style-guide#snake-case-files' Enabled: false Naming/PredicateName: Description: 'Check the names of predicate methods.' StyleGuide: 'https://github.com/rubocop/ruby-style-guide#bool-methods-qmark' ForbiddenPrefixes: - is_ Exclude: - spec/**/*