-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add types and documentation for all parameters
- Loading branch information
1 parent
432a1b7
commit 1f0e26b
Showing
4 changed files
with
28 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1 @@ | ||
--fail-on-warnings | ||
--no-parameter_documentation-check | ||
--no-parameter_types-check |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
.puppet-lint.rc: | ||
enabled_lint_checks: | ||
- parameter_documentation | ||
- parameter_types |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,13 @@ | ||
# | ||
# @summary creates required files for a bolt project. Will create one oneshot service for each plan | ||
# | ||
# @param basepath | ||
# @param project | ||
# @param basepath rootdir where the project will be created into | ||
# @param project the name of the project | ||
# @param owner the user that will own the files and run the service | ||
# @param group the group for all files | ||
# @param plans a list of all plans we want to run | ||
# @param environment the desired code environment we will use | ||
# @param modulepaths an array of directories where code lives | ||
# | ||
# @author Tim Meusel <[email protected]> | ||
# | ||
|