Skip to content

Commit 9765427

Browse files
authored
Merge pull request #557 from ripleymj/fix-lint
Fix additional lint warnings
2 parents 70464e8 + 190126b commit 9765427

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

.ansible-lint

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
skip_list:
33
# Package installs should not use latest
44
- package-latest
5+
- var-naming
56
warn_list:
67
- ignore-errors
78
- experimental

.yamllint

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,15 @@ extends: default
33

44
rules:
55
braces:
6-
min-spaces-inside: 1
6+
min-spaces-inside: 0
77
max-spaces-inside: 1
8+
comments:
9+
min-spaces-from-content: 1
10+
comments-indentation: false
811
line-length: disable
12+
octal-values:
13+
forbid-implicit-octal: true
14+
forbid-explicit-octal: true
915
truthy:
1016
allowed-values: ["yes", "no", "true", "false"]
1117
check-keys: false

0 commit comments

Comments
 (0)