This repository was archived by the owner on May 5, 2023. It is now read-only.
File tree 5 files changed +5
-15
lines changed
5 files changed +5
-15
lines changed Original file line number Diff line number Diff line change 1
- modulesync_config_version : ' 2.9 .0'
1
+ modulesync_config_version : ' 2.10 .0'
Original file line number Diff line number Diff line change 1
1
require : rubocop-rspec
2
2
AllCops :
3
- TargetRubyVersion : 1.9
3
+ TargetRubyVersion : 2.1
4
4
Include :
5
5
- ./**/*.rb
6
6
Exclude :
Original file line number Diff line number Diff line change @@ -3,8 +3,7 @@ dist: bionic
3
3
language : ruby
4
4
cache : bundler
5
5
before_install :
6
- - gem update --system
7
- - gem update bundler
6
+ - yes | gem update --system
8
7
- bundle --version
9
8
script :
10
9
- ' bundle exec rake $CHECK'
@@ -29,6 +28,7 @@ branches:
29
28
- /^v\d/
30
29
notifications :
31
30
email : false
31
+ webhooks : https://voxpupu.li/incoming/travis
32
32
irc :
33
33
on_success : always
34
34
on_failure : always
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ group :test do
20
20
gem 'puppet-lint-classes_and_types_beginning_with_digits-check' , :require => false
21
21
gem 'puppet-lint-unquoted_string-check' , :require => false
22
22
gem 'puppet-lint-variable_contains_upcase' , :require => false
23
- gem 'puppet-lint-absolute_classname-check' , :require => false
23
+ gem 'puppet-lint-absolute_classname-check' , '>= 2.0.0' , :require => false
24
24
gem 'puppet-lint-topscope-variable-check' , :require => false
25
25
gem 'puppet-lint-legacy_facts-check' , :require => false
26
26
gem 'puppet-lint-anchor-check' , :require => false
Original file line number Diff line number Diff line change @@ -8,16 +8,6 @@ rescue LoadError
8
8
end
9
9
10
10
PuppetLint . configuration . log_format = '%{path}:%{line}:%{check}:%{KIND}:%{message}'
11
- PuppetLint . configuration . absolute_classname_reverse = true
12
-
13
- exclude_paths = %w(
14
- pkg/**/*
15
- vendor/**/*
16
- .vendor/**/*
17
- spec/**/*
18
- )
19
- PuppetLint . configuration . ignore_paths = exclude_paths
20
- PuppetSyntax . exclude_paths = exclude_paths
21
11
22
12
desc 'Auto-correct puppet-lint offenses'
23
13
task 'lint:auto_correct' do
You can’t perform that action at this time.
0 commit comments