-
Notifications
You must be signed in to change notification settings - Fork 23
/
.sync.yml
97 lines (89 loc) · 2.44 KB
/
.sync.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
---
.gitlab-ci.yml:
delete: true
.pdkignore:
paths:
- '/rakelib/'
.rubocop.yml:
default_configs:
Layout/HashAlignment:
Enabled: false
Layout/IndentationConsistency:
Enabled: false
Layout/FirstHashElementIndentation:
Enabled: false
Layout/SpaceAfterNot:
Enabled: false
Layout/SpaceInsideParens:
Enabled: false
RSpec/EmptyLineAfterFinalLet:
Enabled: false
RSpec/ExampleWording:
Enabled: false
RSpec/HookArgument:
Enabled: false
RSpec/ImplicitExpect:
Enabled: false
RSpec/NamedSubject:
Enabled: false
Style/AndOr:
Enabled: false
Style/HashSyntax:
Enabled: false
Style/NegatedIf:
Enabled: false
Style/RegexpLiteral:
Enabled: false
Style/TrailingCommaInArrayLiteral:
Enabled: false
Style/TrailingCommaInHashLiteral:
Enabled: false
.travis.yml:
unmanaged: true
appveyor.yml:
unmanaged: true
data/common.yaml:
unmanaged: true
# The Gemfile is unmanaged because there is a bug where required gems are
# included with 'require: false'. This causes TravisCI to fail as it cannot
# find 'rake'. When this is fixed, the commented out lines should be able to be
# used along with whatever change is necessary to include 'rake' without the
# 'require: false'.
#
# https://github.com/puppetlabs/pdk-templates/issues/211
#
Gemfile:
unmanaged: true
# required:
# ':development':
# - gem: rake
# - gem: beaker
# - gem: beaker-docker
# - gem: beaker-module_install_helper
# - gem: beaker-puppet
# - gem: beaker-puppet_install_helper
# - gem: beaker-rspec
# - gem: metadata-json-lint
# - gem: puppet-lint
# - gem: puppet-lint-alias-check
# - gem: puppet-lint-empty_string-check
# - gem: puppet-lint-file_ensure-check
# - gem: puppet-lint-file_source_rights-check
# - gem: puppet-lint-leading_zero-check
# - gem: puppet-lint-spaceship_operator_without_tag-check
# - gem: puppet-lint-trailing_comma-check
# - gem: puppet-lint-undef_in_function-check
# - gem: puppet-lint-unquoted_string-check
# - gem: puppet-lint-variable_contains_upcase
# - gem: puppet-strings
# - gem: puppetlabs_spec_helper
# - gem: rspec-puppet
# - gem: serverspec
Rakefile:
default_disabled_lint_checks:
- '80chars'
- '140chars'
spec/spec_helper.rb:
coverage_report: true
minimum_code_coverage_percentage: 100
mock_with: ':rspec'