diff options
author | Josh Cooper <josh@puppet.com> | 2018-06-28 14:48:40 -0700 |
---|---|---|
committer | Josh Cooper <josh@puppet.com> | 2018-06-28 14:48:40 -0700 |
commit | 527447f54f40d2eed4d52a0477f0fcc1d8b8329b (patch) | |
tree | 2dfb11615f92f6ae710c857c5f81b73a031f5ffd /.rubocop.yml | |
parent | a73ad49d34744021f6c4fc090b54c907201de8a2 (diff) | |
download | puppet-augeas_core-527447f54f40d2eed4d52a0477f0fcc1d8b8329b.tar.gz puppet-augeas_core-527447f54f40d2eed4d52a0477f0fcc1d8b8329b.tar.bz2 |
pdk update using 1.6.0
Diffstat (limited to '.rubocop.yml')
-rw-r--r-- | .rubocop.yml | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/.rubocop.yml b/.rubocop.yml index f97abb8..8586548 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -8,11 +8,14 @@ AllCops: Exclude: - bin/* - ".vendor/**/*" - - Gemfile - - Rakefile + - "**/Gemfile" + - "**/Rakefile" - pkg/**/* - spec/fixtures/**/* - vendor/**/* + - "**/Puppetfile" + - "**/Vagrantfile" + - "**/Guardfile" Metrics/LineLength: Description: People have wide screens, use them. Max: 200 @@ -84,6 +87,12 @@ Style/VariableName: Enabled: false RSpec/MessageSpies: EnforcedStyle: receive +Style/Documentation: + Exclude: + - lib/puppet/parser/functions/**/* + - spec/**/* +Style/WordArray: + EnforcedStyle: brackets Style/CollectionMethods: Enabled: true Style/MethodCalledOnDoEndBlock: |