Skip to content

Commit bd7e8bb

Browse files
authored
Merge pull request #28755 from kolyshkin/editorconfig
.editorconfig: add indentation rule for shell files
2 parents f524bce + 5c5389d commit bd7e8bb

1 file changed

Lines changed: 13 additions & 0 deletions

File tree

.editorconfig

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# See https://EditorConfig.org
2+
3+
# This is a top-most EditorConfig file.
4+
root = true
5+
6+
# Ignore any "vendor" directories.
7+
[**/vendor/**]
8+
ignore = true
9+
10+
# Bash, bats, and sh files use 4 spaces for indentation.
11+
[*.{bash,bats,sh}]
12+
indent_style = space
13+
indent_size = 4

0 commit comments

Comments
 (0)