Skip to content

Commit 67b4410

Browse files
committed
PDK Convert to 3.5.1
1 parent 8e232ef commit 67b4410

File tree

16 files changed

+1018
-66
lines changed

16 files changed

+1018
-66
lines changed

.fixtures.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# This file can be used to install module dependencies for unit testing
2+
# See https://github.com/puppetlabs/puppetlabs_spec_helper#using-fixtures for details
3+
---
4+
fixtures:
5+
forge_modules:
6+
# stdlib: "puppetlabs/stdlib"

.gitattributes

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
*.rb eol=lf
2+
*.erb eol=lf
3+
*.pp eol=lf
4+
*.sh eol=lf
5+
*.epp eol=lf

.gitignore

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,21 @@
1717
/pkg/
1818
/spec/fixtures/manifests/
1919
/spec/fixtures/modules/*
20-
!/spec/fixtures/modules/cd4pe_test_tasks
21-
/spec/fixtures/puppet-enterprise-modules
22-
/spec/fixtures/secrets/*
23-
!/spec/fixtures/secrets/README.md
24-
inventory.yaml
2520
/tmp/
2621
/vendor/
27-
.vendor/
22+
/.vendor/
2823
.vscode/
2924
.ruby-version
3025
/convert_report.txt
3126
/update_report.txt
3227
.DS_Store
33-
target/*
28+
.project
29+
.envrc
30+
/inventory.yaml
31+
/spec/fixtures/litmus_inventory.yaml
32+
.resource_types
33+
.modules
34+
.task_cache.json
35+
.plan_cache.json
36+
.rerun.json
37+
bolt-debug.log

.pdkignore

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
.git/
2+
.*.sw[op]
3+
.metadata
4+
.yardoc
5+
.yardwarns
6+
*.iml
7+
/.bundle/
8+
/.idea/
9+
/.vagrant/
10+
/coverage/
11+
/bin/
12+
/doc/
13+
/Gemfile.local
14+
/Gemfile.lock
15+
/junit/
16+
/log/
17+
/pkg/
18+
/spec/fixtures/manifests/
19+
/spec/fixtures/modules/*
20+
/tmp/
21+
/vendor/
22+
/.vendor/
23+
/convert_report.txt
24+
/update_report.txt
25+
.DS_Store
26+
.project
27+
.envrc
28+
/inventory.yaml
29+
/spec/fixtures/litmus_inventory.yaml
30+
.resource_types
31+
.modules
32+
.task_cache.json
33+
.plan_cache.json
34+
.rerun.json
35+
bolt-debug.log
36+
/.fixtures.yml
37+
/Gemfile
38+
/.gitattributes
39+
/.github/
40+
/.gitignore
41+
/.pdkignore
42+
/.puppet-lint.rc
43+
/Rakefile
44+
/rakelib/
45+
/.rspec
46+
/..yml
47+
/.yardopts
48+
/spec/
49+
/.vscode/
50+
/.sync.yml
51+
/.devcontainer/

.puppet-lint.rc

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
--fail-on-warnings
2+
--relative
3+
--no-80chars-check
4+
--no-140chars-check
5+
--no-class_inherits_from_params_class-check
6+
--no-autoloader_layout-check
7+
--no-documentation-check
8+
--no-single_quote_string_with_variables-check
9+
--ignore-paths=.vendor/**/*.pp,.bundle/**/*.pp,pkg/**/*.pp,spec/**/*.pp,tests/**/*.pp,types/**/*.pp,vendor/**/*.pp

.rspec

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
--color
2+
--format documentation

0 commit comments

Comments
 (0)