diff options
author | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2021-02-20 02:52:30 +0100 |
---|---|---|
committer | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2021-02-20 02:53:10 +0100 |
commit | 076b17ff6c1b0cec8be8c329a93ec0b5acf4d285 (patch) | |
tree | 6dc16c225213acd175ae4f3e3b5d0da1c92e959b | |
parent | dc1ae065578baee102d461353c757ebf2cc5cf8c (diff) |
Use space indentation for all YAML files in `.editorconfig`
YAML only accepts spaces for indentation, not tabs.
-rw-r--r-- | .editorconfig | 3 |
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 |