diff options
author | Josh Cooper <josh@puppet.com> | 2019-10-24 09:33:37 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-24 09:33:37 -0700 |
commit | 98f3c0fd6c640ad8e9c970b27b2719a2a4ad68ed (patch) | |
tree | 5d1dde923096b6685b8949723f2d01d5781530cc /.rubocop.yml | |
parent | f78b81b829cb46dffe8fd93065d99d739f51cd46 (diff) | |
parent | 86b26d7f531206622cbb209cff9727b4f24bd15a (diff) | |
download | puppet-sshkeys_core-98f3c0fd6c640ad8e9c970b27b2719a2a4ad68ed.tar.gz puppet-sshkeys_core-98f3c0fd6c640ad8e9c970b27b2719a2a4ad68ed.tar.bz2 |
Merge pull request #25 from puppetlabs/pdksync_update-pdk
pdksync - (maint) Enable changelog-generator
Diffstat (limited to '.rubocop.yml')
-rw-r--r-- | .rubocop.yml | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/.rubocop.yml b/.rubocop.yml index 1c63ed4..ee5f3fb 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -1,5 +1,7 @@ --- -require: rubocop-rspec +require: +- rubocop-rspec +- rubocop-i18n AllCops: DisplayCopNames: true TargetRubyVersion: '2.1' @@ -19,10 +21,13 @@ AllCops: Metrics/LineLength: Description: People have wide screens, use them. Max: 200 +GetText: + Enabled: false GetText/DecorateString: Description: We don't want to decorate test output. Exclude: - - spec/* + - spec/**/* + Enabled: false RSpec/BeforeAfterAll: Description: Beware of using after(:all) as it may cause state to leak between tests. A necessary evil in acceptance testing. @@ -88,6 +93,12 @@ Style/MethodCalledOnDoEndBlock: Enabled: true Style/StringMethods: Enabled: true +GetText/DecorateFunctionMessage: + Enabled: false +GetText/DecorateStringFormattingUsingInterpolation: + Enabled: false +GetText/DecorateStringFormattingUsingPercent: + Enabled: false Layout/EndOfLine: Enabled: false Layout/IndentHeredoc: |