summaryrefslogtreecommitdiff
path: root/.yamllint.yml
diff options
context:
space:
mode:
Diffstat (limited to '.yamllint.yml')
-rw-r--r--.yamllint.yml16
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