diff options
| author | Alexandre Flament <alex@al-f.net> | 2021-06-05 20:36:03 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-06-05 20:36:03 +0200 |
| commit | 5f76238d5cd6f9c850d5237fe639ba2900fd3e6c (patch) | |
| tree | 493c7747d2a2156b99f25541425f7de545ca7599 /.yamllint.yml | |
| parent | fb6dd416e5d3609037d04e58d34fc375c450c4d5 (diff) | |
| parent | 6b9633098d6ac3bc2038d11748ebf9f67c591cf2 (diff) | |
Merge pull request #105 from return42/yaml
[enh] add test.yamllint - lint yaml files
Diffstat (limited to '.yamllint.yml')
| -rw-r--r-- | .yamllint.yml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/.yamllint.yml b/.yamllint.yml new file mode 100644 index 000000000..065665612 --- /dev/null +++ b/.yamllint.yml @@ -0,0 +1,16 @@ +extends: default + +rules: + + indentation: + spaces: 2 + + # 120 chars should be enough, but don't fail if a line is longer + line-length: + max: 120 + level: warning + allow-non-breakable-words: true + + # we don't have multiple document per file + document-start: disable + document-end: disable |