Sha256: fc86c62ee4b75e9c296d751706eae3882db8d884b038b9087a2a2d3dcde57046

Contents?: true

Size: 832 Bytes

Versions: 3

Compression:

Stored size: 832 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:
  NewCops: enable

Naming/MethodParameterName:
  AllowedNames:
    - r
    - g
    - b

Metrics/MethodLength:
  Max: 50

Metrics/PerceivedComplexity:
  Max: 25

Metrics/CyclomaticComplexity:
  Max: 15

Metrics/BlockLength:
  Exclude:
    - test/**/*

Metrics/AbcSize:
  Max: 30
  IgnoredMethods:
    - build_components

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
camalian-0.2.2 .rubocop.yml
camalian-0.2.1 .rubocop.yml
camalian-0.2.0 .rubocop.yml