Sha256: b0fb8b4874d24dedae975844120a872f1d814a5d4319ea74a1a198d4d37a98e9

Contents?: true

Size: 784 Bytes

Versions: 2

Compression:

Stored size: 784 Bytes

Contents

require:
  - rubocop-performance
  - rubocop-rails
  - rubocop-rspec

AllCops:
  TargetRubyVersion: <%= RUBY_VERSION %>
  DisplayCopNames: true
  NewCops: enable
  Exclude:
    - bin/*
    - vendor/ruby/**/*
    - node_modules/**/*
    - db/schema.rb
    - .licenses/**/*
Rails:
  Enabled: true
Rails/UnknownEnv:
  Environments:
    - production
    - staging
    - development
    - test
Metrics:
  Exclude:
    - db/migrate/*
    - Rakefile
    - Gemfile
    - config/**/*
    - spec/**/*
    - lib/tasks/**/*
Metrics/BlockLength:
  Exclude:
    - config/environments/*
    - lib/tasks/**/*
    - spec/**/*
Layout/LineLength:
  Max: 120
Style:
  Exclude:
    - spec/*_helper.rb
Style/BlockComments:
  Exclude:
    - config/**/*
    - spec/**/*
Style/Documentation:
  Enabled: false

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
bankai-0.8.1 templates/rubocop.yml.erb
bankai-0.8.0 templates/rubocop.yml.erb