Sha256: b623eb902aa476b76b026ed1842a4f09ca34575c1f4824a3da7054d00e8a1007

Contents?: true

Size: 785 Bytes

Versions: 1

Compression:

Stored size: 785 Bytes

Contents

# The behavior of RuboCop can be controlled via the .rubocop.yml
# configuration file. It makes it possible to enable/disable
# certain cops (checks) and to alter their behavior if they accept
# any parameters. The file can be placed either in your home
# directory or in some project directory.
#
# RuboCop will start looking for the configuration file in the directory
# where the inspected file is and continue its way up to the root directory.
#
# See https://docs.rubocop.org/rubocop/configuration
#

AllCops:
  TargetRubyVersion: "2.4"

Style/StringLiterals:
  EnforcedStyle: double_quotes

Style/TrailingCommaInArrayLiteral:
  EnforcedStyleForMultiline: trailing_comma
Style/TrailingCommaInHashLiteral:
  EnforcedStyleForMultiline: trailing_comma

Metrics/LineLength:
  Max: 80

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
lirc-0.3.0 .rubocop.yml