Sha256: 896cd611bf5250b4ca79e4731dc9cf71c4bdf4a221dd8d121a66e8c7708f720a

Contents?: true

Size: 1.81 KB

Versions: 1

Compression:

Stored size: 1.81 KB

Contents

# Taken from: https://github.com/mattbrictson/rails-template/blob/master/rubocop.yml.tt
# Modified for demo app in `demo/` directory.
require: rubocop-rails

AllCops:
  DisplayCopNames: true
  DisplayStyleGuide: true
  TargetRubyVersion: 2.5
  Exclude:
    - "bin/*"
    - Capfile
    - demo/bin/*
    - "demo/bower_components/**/*"
    - demo/config/boot.rb
    - demo/config/environment.rb
    - demo/config/initializers/version.rb
    - demo/db/schema.rb
    - "demo/node_modules/**/*"
    - demo/Rakefile
    - "demo/tmp/**/*"
    - "demo/vendor/**/*"
    - Gemfile
    - gemfiles/vendor/bundle/**/*
    - Guardfile
    - Rakefile

Layout/SpaceAroundEqualsInParameterDefault:
  EnforcedStyle: no_space

Metrics/AbcSize:
  Exclude:
    - "demo/test/**/*"
    - "test/**/*"

Metrics/BlockLength:
  Exclude:
    - "demo/config/**/*"
    - "demo/test/**/*"
    - "test/**/*"

Metrics/ClassLength:
  Exclude:
    - "demo/test/**/*"
    - "test/**/*"

Metrics/LineLength:
  Max: 132
  Exclude:
    - "demo/config/**/*"
    - "demo/db/**/*"

Metrics/MethodLength:
  Max: 12
  Exclude:
    - "demo/db/migrate/*"
    - "demo/test/**/*"
    - "test/**/*"

Naming/MemoizedInstanceVariableName:
  EnforcedStyleForLeadingUnderscores: optional

Naming/VariableNumber:
  Enabled: false

Rails:
  Enabled: true

Rails/ApplicationRecord:
  Exclude:
    - "demo/db/migrate/**"

Rails/RefuteMethods:
  Enabled: false

Rails/Validation:
  Enabled: false

Style/BarePercentLiterals:
  EnforcedStyle: percent_q

Style/ClassAndModuleChildren:
  Enabled: false

Style/Documentation:
  Enabled: false

Style/DoubleNegation:
  Enabled: false

Style/EmptyMethod:
  Enabled: false

Style/FrozenStringLiteralComment:
  Enabled: false

Style/NumericPredicate:
  Enabled: false

Style/StringLiterals:
  EnforcedStyle: double_quotes

Style/TrivialAccessors:
  AllowPredicates: true

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
bootstrap_form-4.5.0 .rubocop.yml