editorconfig: add back indent_size rules

Actually necessary to prevent indent lines from occasionally showing up
as 2 instead of 4. Also fixes shiftwidth.
This commit is contained in:
Donovan Glover 2024-10-13 17:42:14 -04:00
parent 086b21c312
commit 911547d78c
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -11,6 +11,14 @@
indent_style = "space";
trim_trailing_whitespace = true;
};
"*.md" = {
indent_size = 4;
};
"*.rs" = {
indent_size = 4;
};
};
};
}