diff options
author | Halfwalker <deano-gitea@areyes.com> | 2024-12-13 16:27:12 -0700 |
---|---|---|
committer | Nicholas Johnson <mail@nicholasjohnson.ch> | 2025-01-29 00:00:00 +0000 |
commit | 86bd5e0eccec2453afd1ab11a1221d6e3f0e819ba8386b3edf50387f69ff9266 (patch) | |
tree | 190103ca60d3b4a63c06fa777ad823e426b69186201bbedc60909161b4946c09 /.yamllint | |
download | ansible-role-google-authenticator-86bd5e0eccec2453afd1ab11a1221d6e3f0e819ba8386b3edf50387f69ff9266.tar.gz ansible-role-google-authenticator-86bd5e0eccec2453afd1ab11a1221d6e3f0e819ba8386b3edf50387f69ff9266.zip |
Initial commit
Diffstat (limited to '.yamllint')
-rw-r--r-- | .yamllint | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/.yamllint b/.yamllint new file mode 100644 index 0000000..65542e3 --- /dev/null +++ b/.yamllint @@ -0,0 +1,37 @@ +--- +# Based on ansible-lint config +extends: default + +rules: + braces: + max-spaces-inside: 1 + level: error + brackets: + max-spaces-inside: 1 + level: error + colons: + max-spaces-after: -1 + level: error + commas: + max-spaces-after: -1 + level: error + comments: + min-spaces-from-content: 1 + comments-indentation: disable + octal-values: + forbid-implicit-octal: true # yamllint defaults to false + document-start: disable + empty-lines: + max: 3 + max-end: 2 + level: warning + hyphens: + level: error + indentation: disable + key-duplicates: enable + line-length: disable + new-line-at-end-of-file: disable + new-lines: + type: unix + trailing-spaces: disable + truthy: disable |