Sha256: 0027c22cd2b4f7939eb0153d307eaa2da6b456bce807b95efaea54d77f20592e

Contents?: true

Size: 912 Bytes

Versions: 4

Compression:

Stored size: 912 Bytes

Contents

# The behavior of RuboCop can be controlled via the .rubocop.yml
# configuration file. It makes it possible to enable/disable
# certain cops (checks) and to alter their behavior if they accept
# any parameters. The file can be placed either in your home
# directory or in some project directory.
#
# RuboCop will start looking for the configuration file in the directory
# where the inspected file is and continue its way up to the root directory.
#
# See https://docs.rubocop.org/rubocop/configuration

AllCops:
  Exclude:
    - '*.gemspec'
    - 'bin/*'

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

Metrics/PerceivedComplexity:
  Enabled: false

Metrics/MethodLength:
  Enabled: false

Metrics/AbcSize:
  Enabled: false

Metrics/CyclomaticComplexity:
  Enabled: false

Style/Documentation:
  Enabled: false

Naming/FileName:
  Exclude:
   - 'lib/rails-threaded-proxy.rb'
   - 'lib/threaded-proxy.rb'

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
rails-threaded-proxy-0.5.0 .rubocop.yml
rails-threaded-proxy-0.4.1 .rubocop.yml
rails-threaded-proxy-0.4.0 .rubocop.yml
rails-threaded-proxy-0.3.0 .rubocop.yml