Sha256: 5f9ed7df98a0fb7eaa41a6c1a1a77a2eb1b1b9c6774d8c071f26c02c770fac99

Contents?: true

Size: 1.01 KB

Versions: 1

Compression:

Stored size: 1.01 KB

Contents

require: rubocop-rspec

AllCops:
  Exclude:
    - example/db/**/*
    - example/config/**/*
    - search_object.gemspec

# Disables "Line is too long"
LineLength:
  Enabled: false

# Disables Module has too many lines
ModuleLength:
  Enabled: false

# Disables "Missing top-level class documentation comment"
Documentation:
  Enabled: false

# Disables "Use each_with_object instead of inject"
Style/EachWithObject:
  Enabled: false

# Disables "Prefer reduce over inject."
Style/CollectionMethods:
  Enabled: false

# Disables "Avoid the use of double negation (!!)."
Style/DoubleNegation:
  Enabled: false

# Disables "Block has too many lines."
Metrics/BlockLength:
  Enabled: false

# Disables "Assignment Branch Condition size for field_options is too high."
Metrics/AbcSize:
  Enabled: false

# Disables "Method has too many line."
Metrics/MethodLength:
  Enabled: false

# Disables "Example has too many lines."
RSpec/ExampleLength:
  Enabled: false

# Disables "Too many expectations."
RSpec/MultipleExpectations:
  Enabled: false

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
search_object_graphql-0.2 .rubocop.yml