Files
polaris-react/.editorconfig
Kaelig Deloumeau-Prigent d43e11c66b Allow trailing whitespace in diff and markdown files (#1499)
* Ignore trailing whitespace removal in diff and markdown files

* Delegate whitespace management to editorconfig instead of VS Code

* Follow user defaults on trimTrailingWhitespace and insertFinalNewline
2018-06-07 11:32:13 -07:00

21 lines
525 B
INI
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# editorconfig.org
root = true
[*]
charset = utf-8
indent_size = 2
indent_style = space
insert_final_newline = true
trim_trailing_whitespace = true
# Markdown syntax specifies that trailing whitespaces can be meaningful,
# so lets not trim those. e.g. 2 trailing spaces = linebreak (<br />)
# See https://daringfireball.net/projects/markdown/syntax#p
[*.md]
trim_trailing_whitespace = false
# Disable trailing whitespace removal in diff files,
# where whitespace is meaningful
[*.diff]
trim_trailing_whitespace = false