mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-14 07:46:12 +03:00

We're consistently using 2-space indentation in our shell scripts with the exception of bash-prefix.sh, which is a vendored script uses 4-space indentation (https://github.com/rcaloras/bash-preexec). Add editorconfig rules to help maintain this consistency going forward.
10 lines
120 B
INI
10 lines
120 B
INI
root = true
|
|
|
|
[*.{sh,bash}]
|
|
indent_size = 2
|
|
indent_style = space
|
|
|
|
[bash-preexec.sh]
|
|
indent_size = 4
|
|
indent_style = space
|