Sha256: c575966ae13720cf52db99de53c5257eaeb367624c5e1f3057a8cb41915e2798

Contents?: true

Size: 1.23 KB

Versions: 1

Compression:

Stored size: 1.23 KB

Contents

inherit_from: rubocop-todo.yml

AllCops:
  TargetRubyVersion: 2.3
  Exclude:
    - 'fizzy_api.gemspec'
    - 'tmp/**/*'
    - 'vendor/**/*'
    - 'bin/*'

# Use UTF-8 as the source file encoding.
Encoding:
  Enabled: false

# Limit lines to 80 characters.
LineLength:
  Max: 120

Metrics/BlockLength:
  Exclude:
    - 'spec/**/*'

Style/MixinUsage:
  Exclude:
    - 'spec/spec_helper.rb'

# Avoid methods longer than 10 lines of code
MethodLength:
  CountComments: false  # count full line comments?
  Max: 20

# Describe specs fail this test
# Namespaces in rake tasks do too
Metrics/BlockLength:
  Exclude:
    - 'spec/**/*'
    - '**/*.rake'

################################################################## DISABLED COPS

# These cops are disabled because we think they are a Bad Idea. If you add one
# here, make sure to add a comment describing what the cop does, and why this
# is a bad idea.

# Forces the argument names of the block given to #reduce to be `a, e`. Only
# applies on single-line blocks, but why would we want to force people to use
# less descriptive names?
Documentation:
  Enabled: false

# Gems typically have one file named the-gem-name.rb which can be autorequired by bundler
Naming/FileName:
  Exclude:
    - lib/fizzy-api.rb

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
fizzy-api-0.1.5 .rubocop.yml