.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 55 [*.lock] 56 56 indent_size = unset 57 57 58 - # trailing whitespace is an actual syntax element of classic Markdown/ 59 - # CommonMark to enforce a line break 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. 60 63 [*.md] 61 - trim_trailing_whitespace = unset 64 + trim_trailing_whitespace = true 62 65 63 66 # binaries 64 67 [*.nib]