3
0

adjust everything for compliance with puppet-lint

This commit is contained in:
Arne Teuke
2025-05-16 11:35:59 +02:00
parent 0bc4e2b023
commit 03399ec8a5
25 changed files with 13 additions and 3526 deletions

11
Jenkinsfile vendored
View File

@@ -51,16 +51,9 @@ pipeline {
stage('puppet-lint') {
steps {
sh '''find . -iname *.pp -exec /usr/local/rvm/gems/ruby-2.5.0/wrappers/puppet-lint \\
--no-class_inherits_from_params_class-check \\
--no-variable_scope-check \\
--no-80chars-check \\
--no-arrow_alignment-check \\
--no-autoloader_layout-check \\
--no-140chars-check \\
--log-format "%{path}:%{line}:%{check}:%{KIND}:%{message}" {} \\;
sh '''/usr/local/bin/puppet-lint . \\
--no-variable_scope-check \\
'''
/* recordIssues aggregatingResults: true, tool: puppetLint() */
}
}