Editorconfig: Dont trim ws in md.

This commit is contained in:
Dmitry Voronin 2024-11-12 12:53:50 +03:00
parent 84dccaab13
commit 15efd83a30
Signed by: voronind
SSH key fingerprint: SHA256:3kBb4iV2ahufEBNq+vFbUe4QYfHt98DHQjN7QaptY9k

View file

@ -21,6 +21,9 @@
"*.{lua,kt,kts,rs,py}" = { "*.{lua,kt,kts,rs,py}" = {
indent_size = 4; indent_size = 4;
}; };
"*.md" = {
trim_trailing_whitespace = false;
};
}; };
}; };
} }