.editorconfig: disallow trailing whitespace for markdown again

Although trailing whitespace is significant, there's no good reason to
use that feature.

+6 -3
+6 -3
.editorconfig
··· 55 [*.lock] 56 indent_size = unset 57 58 - # trailing whitespace is an actual syntax element of classic Markdown/ 59 - # CommonMark to enforce a line break 60 [*.md] 61 - trim_trailing_whitespace = unset 62 63 # binaries 64 [*.nib]
··· 55 [*.lock] 56 indent_size = unset 57 58 + # Although Markdown/CommonMark allows using two trailing spaces to denote 59 + # a hard line break, we do not use that feature in nixpkgs since 60 + # it forces the surrounding paragraph to become a <literallayout> which 61 + # does not wrap reasonably. 62 + # Instead of a hard line break, start a new paragraph by inserting a blank line. 63 [*.md] 64 + trim_trailing_whitespace = true 65 66 # binaries 67 [*.nib]