1
0
Fork 0
mirror of https://github.com/mastodon/mastodon.git synced 2024-08-20 21:08:15 -07:00
mastodon/.rubocop/style.yml

38 lines
693 B
YAML

---
Style/Alias:
EnforcedStyle: prefer_alias
Style/ArgumentsForwarding:
Enabled: false
Style/EmptyMethod:
EnforcedStyle: compact
Style/PercentLiteralDelimiters:
PreferredDelimiters:
'%i': ()
'%w': ()
Style/RedundantBegin:
Enabled: false
Style/SingleLineMethods:
AllowIfMethodIsEmpty: true
Style/StringLiterals:
EnforcedStyle: single_quotes
Style/StringLiteralsInInterpolation:
EnforcedStyle: single_quotes
Style/TernaryParentheses:
EnforcedStyle: require_no_parentheses
Style/TrailingCommaInArrayLiteral:
EnforcedStyleForMultiline: comma
Style/TrailingCommaInHashLiteral:
EnforcedStyleForMultiline: comma
Style/UnlessLogicalOperators:
Enabled: false