Sha256: 7d27789a9fad92480cf4f98de8c32eb3226496f28c240961f29b529f28226322

Contents?: true

Size: 1.54 KB

Versions: 3

Compression:

Stored size: 1.54 KB

Contents

---
require:
  - standard
  - rubocop-rails

inherit_gem:
  standard: config/base.yml

AllCops:
  TargetRubyVersion: 2.7

  Exclude:
    - 'db/migrate/**/*'
    - 'db/schema.rb'
    - 'vendor/**/*'

Bundler/InsecureProtocolSource:
  Enabled: true
  Include:
    - '**/*.gemfile'
    - '**/Gemfile'
    - '**/Gemfile.tools'
    - '**/gems.rb'

Layout/EmptyLinesAroundAttributeAccessor:
  Enabled: true

Layout/LineLength:
  Max: 113

Layout/MultilineMethodArgumentLineBreaks:
  Enabled: true

Layout/SpaceInLambdaLiteral:
  EnforcedStyle: require_space

Lint/StructNewOverride:
  Enabled: true

Metrics/AbcSize:
  Exclude:
    - 'test/**/*.rb'

Metrics/ClassLength:
  CountComments: false
  Exclude:
    - 'test/**/*.rb'

Metrics/MethodLength:
  CountComments: false
  Exclude:
    - 'test/**/*.rb'

Metrics/ModuleLength:
  CountComments: false
  Exclude:
    - 'test/**/*.rb'

Naming/MemoizedInstanceVariableName:
  EnforcedStyleForLeadingUnderscores: required

Naming/PredicateName:
  Exclude:
    - 'app/helpers/application_helper.rb'

Style/ClassAndModuleChildren:
  Exclude:
    - 'test/**/*.rb'

Style/Documentation:
  Enabled: false

Style/ExponentialNotation:
  Enabled: true

Style/FrozenStringLiteralComment:
  Enabled: true

Style/HashEachMethods:
  Enabled: true

Style/HashTransformKeys:
  Enabled: true

Style/HashTransformValues:
  Enabled: true

Style/SlicingWithRange:
  Enabled: true

# Rails

Rails:
  Enabled: true

Rails/SkipsModelValidations:
  Blacklist: []

Rails/UnknownEnv:
  Environments:
    - development
    - production
    - staging
    - test

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
jt_tools-0.0.12 lib/install/.rubocop.yml
jt_tools-0.0.11 lib/install/.rubocop.yml
jt_tools-0.0.10 lib/install/.rubocop.yml