summaryrefslogtreecommitdiff
path: root/lib/bundler/templates/newgem/rubocop.yml.tt
blob: 9ecec788075a5dcb42d18746d7938988ba259648 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
AllCops:
  TargetRubyVersion: <%= ::Gem::Version.new(config[:required_ruby_version]).segments[0..1].join(".") %>

Style/StringLiterals:
  Enabled: true
  EnforcedStyle: double_quotes

Style/StringLiteralsInInterpolation:
  Enabled: true
  EnforcedStyle: double_quotes

Layout/LineLength:
  Max: 120