diff options
author | David Gay <david@davidgay.org> | 2021-04-21 21:01:49 -0400 |
---|---|---|
committer | David Gay <david@davidgay.org> | 2021-04-21 21:01:49 -0400 |
commit | 6f79f2ef7fb1593b591bef00e7e79c9e1e7d6fc6 (patch) | |
tree | 73269a2a8f77148cc693132c1dc579b8e0308593 /.editorconfig | |
parent | 975ab9e285baf4f1b22b60104db4f8f982c1db8b (diff) |
gitignore, readme, editorconfig, and rubocop
Diffstat (limited to '.editorconfig')
-rw-r--r-- | .editorconfig | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..cef38a0 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,13 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +indent_size = 2 +indent_style = space +insert_final_newline = true +trim_trailing_whitespace = true + +[*.md] +indent_size = 4 +trim_trailing_whitespace = false |