Sha256: bfcf3e481ef10b178beb237648d4de43596598a1b9ed1cc7ef1361cad3827fc8

Contents?: true

Size: 1.05 KB

Versions: 16

Compression:

Stored size: 1.05 KB

Contents

inherit_from:
  - https://shopify.github.io/ruby-style-guide/rubocop-cli.yml

AllCops:
  Exclude:
    - 'vendor/**/*'
    - 'docs/**/*'
    - 'packaging/**/*'
  TargetRubyVersion: 2.4

Layout/EmptyLines:
  Exclude:
    # Need extra line so comment at top isnt registered to the Dev namespace
    - 'lib/dev/helpers/chruby_reset.rb'

# Changing this could effect the way the content is rendered.
Layout/HeredocIndentation:
  Exclude:
    - 'lib/project_types/node/messages/messages.rb'
    - 'lib/project_types/rails/messages/messages.rb'
    - 'lib/project_types/script/messages/messages.rb'
    - 'lib/shopify-cli/messages/messages.rb'

# allow String.new to create mutable strings
Style/EmptyLiteral:
  Enabled: false

# allow String.new to create mutable strings
Style/HashSyntax:
  Exclude:
    - 'Rakefile'

# allow using %r{} for regexes
Style/RegexpLiteral:
  Enabled: false

Style/MethodCallWithArgsParentheses:
  IgnoredMethods:
    - require
    - require_relative
    - require_dependency
    - yield
    - raise
    - puts
    - assert_equal
    - assert
    - refute

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
shopify-cli-1.3.1 .rubocop.yml
shopify-cli-1.3.0 .rubocop.yml
shopify-cli-1.2.0 .rubocop.yml
shopify-cli-1.1.2 .rubocop.yml
shopify-cli-1.1.1 .rubocop.yml
shopify-cli-1.1.0 .rubocop.yml
shopify-cli-1.0.5 .rubocop.yml
shopify-cli-1.0.4 .rubocop.yml
shopify-cli-1.0.3 .rubocop.yml
shopify-cli-1.0.2 .rubocop.yml
shopify-cli-1.0.1 .rubocop.yml
shopify-cli-1.0.0 .rubocop.yml
shopify-cli-0.9.3 .rubocop.yml
shopify-cli-0.9.2 .rubocop.yml
shopify-cli-0.9.1 .rubocop.yml
shopify-cli-0.9.0 .rubocop.yml