Sha256: aadca88e004139121c30b6aee9c33a1830706195cbc489892177f69005bb66af

Contents?: true

Size: 1.13 KB

Versions: 7

Compression:

Stored size: 1.13 KB

Contents

# Check the naming of accessor methods for get_/set_.
Naming/AccessorMethodName:
  Enabled: false

# Use only ascii symbols in identifiers.
Naming/AsciiIdentifiers:
  Enabled: true

# When defining binary operators, name the argument other.
Naming/BinaryOperatorParameterName:
  Enabled: true

# Use CamelCase for classes and modules.'
Naming/ClassAndModuleCamelCase:
  Enabled: true

# Constants should use SCREAMING_SNAKE_CASE.
Naming/ConstantName:
  Enabled: true

# Use snake_case for source file names.
Naming/FileName:
  Enabled: true

# Use the configured style when naming methods.
Naming/MethodName:
  Enabled: true

# Use `spam?` instead of `is_spam?`
# Configuration parameters: NamePrefix, NamePrefixBlacklist, NameWhitelist.
# NamePrefix: is_, has_, have_
# NamePrefixBlacklist: is_, has_, have_
# NameWhitelist: is_a?
Naming/PredicateName:
  Enabled: true
  NamePrefixBlacklist: is_
  Exclude:
    - 'spec/**/*'
    - 'features/**/*'

# Use the configured style when naming variables.
Naming/VariableName:
  EnforcedStyle: snake_case
  Enabled: true

# Use the configured style when numbering variables.
Naming/VariableNumber:
  Enabled: false

Version data entries

7 entries across 7 versions & 2 rubygems

Version Path
pdf_extractor-0.1.1 .rubocop/rubocop-naming.yml
gitlab-styles-2.4.0 rubocop-naming.yml
gitlab-styles-2.3.2 rubocop-naming.yml
gitlab-styles-2.3.1 rubocop-naming.yml
gitlab-styles-2.3.0 rubocop-naming.yml
gitlab-styles-2.2.0 rubocop-naming.yml
gitlab-styles-2.1.0 rubocop-naming.yml