Trim trailing whitespace in all md and yml files (#1329)

* Trim non-significant trailing whitespace, add final newlines to md,yml files

* Add .editorconfig with basic whitespace conventions
This commit is contained in:
Patrick Ellis
2021-09-15 07:35:25 -04:00
committed by GitHub
parent b6d46c148a
commit 176e7f5208
20 changed files with 52 additions and 44 deletions

8
.editorconfig Normal file
View File

@@ -0,0 +1,8 @@
# https://editorconfig.org/
[*]
insert_final_newline = true # ensure all files end with a single newline
trim_trailing_whitespace = true # attempt to remove trailing whitespace on save
[*.md]
trim_trailing_whitespace = false # in markdown, "two trailing spaces" is unfortunately meaningful; it means `<br>`