continuwuity/.editorconfig
Shane Jaroch 5800d3c677
git: 3-way patch from upstream, see:
from this branch (origin is Jade's, github is mine), I ran:

```shell
FILES=$(gds origin/main --name-only)
BASE=$(git merge-base HEAD github/main)
git diff $BASE..github/main  -- $FILES | git apply --3way
```
2026-03-11 19:22:20 -04:00

41 lines
529 B
INI

# EditorConfig is awesome: https://EditorConfig.org
root = true
[*]
charset = utf-8
end_of_line = lf
tab_width = 4
indent_size = 4
indent_style = space
insert_final_newline = true
max_line_length = 120
[*.{md,txt}]
indent_style = space
indent_size = 4
max_line_length = 80
[*.nix]
indent_size = 2
[*.rs]
indent_style = tab
max_line_length = 98
[[bash]]
indent_style = tab
[*.yml]
indent_size = 2
indent_style = space
[*.json]
indent_size = 4
indent_style = space
[Makefile]
indent_style = tab
[[bash]]
indent_style=tab