-
Notifications
You must be signed in to change notification settings - Fork 144
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
squash: forgot to add yamllint config
- Loading branch information
Showing
1 changed file
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
--- | ||
|
||
# The following settings are recommended by ansible-lint project. They | ||
# may conflict with our other YAML files, but as of now, we test only | ||
# a very small subset of all YAML files in the repository. Once we start | ||
# extending the coverage, it may become a problem, and we will need to | ||
# resolve it, but the settings below seem reasonable enough that any | ||
# YAML file could comply. | ||
|
||
extends: default | ||
|
||
rules: | ||
comments: | ||
min-spaces-from-content: 1 | ||
|
||
comments-indentation: false | ||
|
||
braces: | ||
max-spaces-inside: 1 | ||
|
||
line-length: | ||
max: 100 | ||
|
||
octal-values: | ||
forbid-implicit-octal: true | ||
forbid-explicit-octal: true | ||
|
||
truthy: | ||
level: error | ||
|
||
allowed-values: | ||
- "true" | ||
- "false" | ||
|
||
check-keys: true |