Sha256: ed0e947cec8a960c3445c84aefb4b1f68b552b2dc83ae6cb9f53073a78d03635

Contents?: true

Size: 1.58 KB

Versions: 11

Compression:

Stored size: 1.58 KB

Contents

inherit_mode:
  merge:
    - Exclude # see: https://stackoverflow.com/a/70818366/473923
    - AllowedNames
AllCops:
  TargetRubyVersion: 2.7
  DisplayCopNames: true
  ExtraDetails: true
  NewCops: enable
  Exclude:
    - ".builders/**/*"
    - "spec/samples/**/*"

Metrics/BlockLength:
  Exclude:
    - "**/spec/**/*"
    - "*.gemspec"
  AllowedMethods:
    - configure
    - context
    - define
    - describe
    - draw
    - factory
    - feature
    - guard
    - included
    - it
    - let
    - let!
    - scenario
    - setup
    - shared_context
    - shared_examples
    - shared_examples_for
    - transaction

Metrics/MethodLength:
  Max: 25

Layout/LineLength:
  Max: 200
  # Ignores annotate output
  AllowedPatterns: ['\A# \*\*']
  IgnoreCopDirectives: true

Lint/UnusedMethodArgument:
  AllowUnusedKeywordArguments: true

Style/BlockComments:
  Enabled: false
  Include:
    - "**/spec/*"

# My Preferences - Start
Metrics/ClassLength:
  Enabled: false
Metrics/ModuleLength:
  Exclude:
    - "**/spec/**/*"
Naming/MemoizedInstanceVariableName:
  Enabled: false
Naming/VariableNumber:
  Exclude:
    - "**/spec/**/*"
Naming/MethodParameterName:
  AllowedNames:
    - as
Style/EmptyMethod:    
  Exclude:
    - "**/spec/**/*"
Metrics/ParameterLists:
  Exclude:
    - "**/spec/**/*"
Layout/EmptyLineBetweenDefs:
  Exclude:
    - "**/spec/**/*"

Lint/AmbiguousBlockAssociation:
  Exclude:
    - "**/spec/**/*"

Style/AccessorGrouping:
  Enabled: false

Layout/SpaceBeforeComma:
  Enabled: false
# My Preferences - End

Metrics/AbcSize:
  Exclude:
    - "lib/handlebarsjs/handlebars_configuration_defaults.rb"

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
handlebarsjs-0.14.2 .rubocop.yml
handlebarsjs-0.14.1 .rubocop.yml
handlebarsjs-0.14.0 .rubocop.yml
handlebarsjs-0.13.1 .rubocop.yml
handlebarsjs-0.13.0 .rubocop.yml
handlebarsjs-0.12.0 .rubocop.yml
handlebarsjs-0.11.3 .rubocop.yml
handlebarsjs-0.11.2 .rubocop.yml
handlebarsjs-0.11.1 .rubocop.yml
handlebarsjs-0.11.0 .rubocop.yml
handlebarsjs-0.10.0 .rubocop.yml