Skip to content

Commit 92a9a9a

Browse files
author
Nikita
committed
move to pdk
1 parent 0de4ef4 commit 92a9a9a

39 files changed

+1154
-1600
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

.github/workflows/ci.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
name: CI
3+
4+
on:
5+
workflow_dispatch:
6+
push:
7+
branches:
8+
- pdk
9+
10+
jobs:
11+
puppet:
12+
name: Puppet
13+
uses: luckyraul/puppet-lab/.github/workflows/test.yml@master

.gitignore

Lines changed: 35 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,36 @@
1-
spec/fixtures
2-
pkg
3-
.bundle/
4-
.vagrant
1+
old/
2+
.git/
3+
.*.sw[op]
4+
.metadata
55
.yardoc
6-
doc
7-
*.swp
8-
.ruby-version
9-
log
10-
Gemfile.lock
11-
coverage/*
6+
.yardwarns
7+
*.iml
8+
/.bundle/
9+
/.idea/
10+
/.vagrant/
11+
/coverage/
12+
/bin/
13+
/doc/
14+
/Gemfile.local
15+
/Gemfile.lock
16+
/junit/
17+
/log/
18+
/pkg/
19+
/spec/fixtures/manifests/
20+
/spec/fixtures/modules/*
21+
/tmp/
22+
/vendor/
23+
/.vendor/
24+
/convert_report.txt
25+
/update_report.txt
26+
.DS_Store
27+
.project
28+
.envrc
29+
/inventory.yaml
30+
/spec/fixtures/litmus_inventory.yaml
31+
.resource_types
32+
.modules
33+
.task_cache.json
34+
.plan_cache.json
35+
.rerun.json
36+
bolt-debug.log

.pdkignore

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

.puppet-lint.rc

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
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-parameter_documentation
9+
--no-parameter_types
10+
--no-single_quote_string_with_variables-check
11+
--ignore-paths=.vendor/**/*.pp,.bundle/**/*.pp,pkg/**/*.pp,spec/**/*.pp,tests/**/*.pp,types/**/*.pp,vendor/**/*.pp,old/**/*.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)