- Change the few files that use leading tabs into leading spaces. This way they match the other files in the repo. - Add an EditorConfig file so that supported editors will automatically use spaces instead of tabs. - (Extra) Add some common editor backup-file extensions to .gitignore.
7 lines
130 B
INI
7 lines
130 B
INI
# see https://editorconfig.org for the format of this file
|
|
root = true
|
|
|
|
[*]
|
|
end_of_line = LF
|
|
indent_style = space
|
|
indent_size = 4
|