Sha256: 8a6ba1535aa0d51c81050e2bc51908f57618c29b5c7c2a540ab603f09d0bc6fa

Contents?: true

Size: 1.69 KB

Versions: 14

Compression:

Stored size: 1.69 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/**/*"
    - "a/**/*"
    - "after_templates/**/*"
    - "templates/**/*"

Metrics/BlockLength:
  Exclude:
    - "**/spec/**/*"
    - "*.gemspec"
    - "lib/rails_app_generator/app_generator.rb"
  IgnoredMethods:
    - 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# \*\*'] # this is renamed to AllowedPatterns and I need to come up with a template for this
  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

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
rails_app_generator-0.1.28 .rubocop.yml
rails_app_generator-0.1.27 .rubocop.yml
rails_app_generator-0.1.26 .rubocop.yml
rails_app_generator-0.1.25 .rubocop.yml
rails_app_generator-0.1.24 .rubocop.yml
rails_app_generator-0.1.23 .rubocop.yml
rails_app_generator-0.1.22 .rubocop.yml
rails_app_generator-0.1.21 .rubocop.yml
rails_app_generator-0.1.20 .rubocop.yml
rails_app_generator-0.1.19 .rubocop.yml
rails_app_generator-0.1.18 .rubocop.yml
rails_app_generator-0.1.17 .rubocop.yml
rails_app_generator-0.1.16 .rubocop.yml
rails_app_generator-0.1.15 .rubocop.yml