diff options
| author | Jason Miller <[email protected]> | 2017-01-19 11:42:01 -0500 |
|---|---|---|
| committer | GitHub <[email protected]> | 2017-01-19 11:42:01 -0500 |
| commit | d743bf8b06f7319f3871f1e90c97e7b4dac2d713 (patch) | |
| tree | 1aa3b25c29bb97e550d1c4fdac7480820f6356ab | |
| parent | 5f5367b7a573e4ecb3285c9b4512cffa5b54d544 (diff) | |
| parent | f6c582d8658a562dc84d4e5558ff8838491347de (diff) | |
Merge pull request #21 from floriangosse/patch-1
chore(editorconfig): add editorconfig
| -rw-r--r-- | .editorconfig | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..ac0adb7 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,17 @@ +root = true + +[*] +indent_style = tab +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true + +[{package.json,.*rc,*.yml}] +indent_style = space +indent_size = 2 + +[*.md] +trim_trailing_whitespace = false +indent_style = space +indent_size = 2 |
