Skip to content

Commit

Permalink
🔧 Add editorconfig. This closes hacknightlbc#3
Browse files Browse the repository at this point in the history
  • Loading branch information
mdrmike committed Jun 7, 2017
1 parent 89dce65 commit caec65d
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# This file is used by editors and IDEs to unify coding standards
# @see http://EditorConfig.org
# @styling https://github.com/styleguide/ruby

root = true

# Default configuration (applies to all file types)
[*]
indent_style = space
indent_size = 2
trim_trailing_whitespace = true
insert_final_newline = true
charset = utf-8
end_of_line = lf

[_includes/*.html]
insert_final_newline=false

# Markdown customizations
[*.{md,markdown}]
trim_trailing_whitespace = false

0 comments on commit caec65d

Please sign in to comment.