Skip to content

Commit

Permalink
steps
Browse files Browse the repository at this point in the history
  • Loading branch information
cantremember committed Jul 31, 2016
1 parent b03ce38 commit 8930003
Show file tree
Hide file tree
Showing 9 changed files with 581 additions and 62 deletions.
45 changes: 45 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
# Look for an EditorConfig plugin for your tool of choice,
# or you might not be able to commit code ;)

# http://editorconfig.org

# top-most EditorConfig file, as we could have one per folder
root = true

# All files
# - use UTF-8
# - use Unix-style newlines with a newline ending every file
# - indent by spaces
# - get whitespace-trimmed
[*]
charset = utf-8
end_of_line = lf
insert_final_newline = true
indent_style = space
trim_trailing_whitespace = true

# Make
[Makefile]
indent_size = 4
indent_style = tab

# JavaScript, JSON
[*.{js,json}]
indent_size = 2

# YAML
[*.{yaml,yml}]
indent_style = space
indent_size = 2

; CSS
[*.{css,sass}]
indent_size = 2

; HTML, Handlebars, etc.
[*.{html,hbs}]
indent_size = 2

; Markdown
[*.md]
indent_size = 2
Loading

0 comments on commit 8930003

Please sign in to comment.