summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugo Locurcio <hugo.locurcio@hugo.pro>2021-02-20 02:52:30 +0100
committerHugo Locurcio <hugo.locurcio@hugo.pro>2021-02-20 02:53:10 +0100
commit076b17ff6c1b0cec8be8c329a93ec0b5acf4d285 (patch)
tree6dc16c225213acd175ae4f3e3b5d0da1c92e959b
parentdc1ae065578baee102d461353c757ebf2cc5cf8c (diff)
Use space indentation for all YAML files in `.editorconfig`
YAML only accepts spaces for indentation, not tabs.
-rw-r--r--.editorconfig3
1 files changed, 2 insertions, 1 deletions
diff --git a/.editorconfig b/.editorconfig
index 49517a5104..7743622e78 100644
--- a/.editorconfig
+++ b/.editorconfig
@@ -17,7 +17,8 @@ indent_size = 4
indent_style = space
indent_size = 4
-[.travis.yml]
+# YAML requires indentation with spaces instead of tabs.
+[*.{yml,yaml}]
indent_style = space
indent_size = 2