diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-02-21 12:38:28 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-21 12:38:28 +0100 |
commit | ff8a1fdc19842aaa52a23e303425f5a703e8317b (patch) | |
tree | af4620f796b0c1a1f0084dcc01c40380e374e674 /.editorconfig | |
parent | 80a9408f1f2d0195bf9f21e9172ec2e98e614a93 (diff) | |
parent | 076b17ff6c1b0cec8be8c329a93ec0b5acf4d285 (diff) |
Merge pull request #46244 from Calinou/editorconfig-yaml-spaces
Use space indentation for all YAML files in `.editorconfig`
Diffstat (limited to '.editorconfig')
-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 |