Sha256: cd8564e15ad718e1a52057e7bcdc88b8cc294ca56b0847c2824d897fd76d7368

Contents?: true

Size: 694 Bytes

Versions: 2

Compression:

Stored size: 694 Bytes

Contents

#
# RuboCop is a Ruby static code analyzer and code formatter that tries to enforce many of
# the guidelines outlined in the community Ruby and Rails
# style guides.
#
# https://docs.rubocop.org/en/latest/
# https://rubystyle.guide/
# https://rails.rubystyle.guide/
inherit_gem:
  practical-pig: rubocop-base.yaml
inherit_mode:
  merge:
    - Include
    - Exclude
    - IgnoredMethods
    - AllowedMethods

# cop-specific excludes are not inherited for some reason (likely a bug in RuboCop) so we
# need to manually re-omit the intended files and directories.
Layout/LineLength:
  Exclude:
    - "**/config/initializers/**/*"
Style/MethodCallWithArgsParentheses:
  Exclude:
    - "**/Gemfile"

Version data entries

2 entries across 2 versions & 2 rubygems

Version Path
webpacker-pnpm-1.2.1 .rubocop.yml
practical-pig-1.0.0 lib/template/.rubocop.yml