Sha256: 17635802cb7c1b0f4bb04e61a2cebbb050a5f3ac518ddc655393d4a285c92c1b

Contents?: true

Size: 1.74 KB

Versions: 51

Compression:

Stored size: 1.74 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/**/*"
    - "lib/rails_app_generator/rag_initializer.rb"

Metrics/BlockLength:
  Exclude:
    - "**/spec/**/*"
    - "*.gemspec"
    - "lib/rails_app_generator/app_generator.rb"
  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# \*\*'] # 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

51 entries across 51 versions & 1 rubygems

Version Path
rails_app_generator-0.3.6 .rubocop.yml
rails_app_generator-0.3.5 .rubocop.yml
rails_app_generator-0.3.4 .rubocop.yml
rails_app_generator-0.3.3 .rubocop.yml
rails_app_generator-0.3.2 .rubocop.yml
rails_app_generator-0.3.1 .rubocop.yml
rails_app_generator-0.3.0 .rubocop.yml
rails_app_generator-0.2.43 .rubocop.yml
rails_app_generator-0.2.42 .rubocop.yml
rails_app_generator-0.2.41 .rubocop.yml
rails_app_generator-0.2.40 .rubocop.yml
rails_app_generator-0.2.39 .rubocop.yml
rails_app_generator-0.2.38 .rubocop.yml
rails_app_generator-0.2.37 .rubocop.yml
rails_app_generator-0.2.36 .rubocop.yml
rails_app_generator-0.2.35 .rubocop.yml
rails_app_generator-0.2.34 .rubocop.yml
rails_app_generator-0.2.33 .rubocop.yml
rails_app_generator-0.2.32 .rubocop.yml
rails_app_generator-0.2.31 .rubocop.yml