Skip to content

Commit

Permalink
Add .editorconfig & .gitignore additions
Browse files Browse the repository at this point in the history
- .editorconfig allows editors to automatically pick up project defaults
- .gitignore additions for common IDE files
  • Loading branch information
ErisDS committed Aug 6, 2015
1 parent b9090f4 commit 875f7f4
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# http://editorconfig.org

root = true

[*]
charset = utf-8
indent_style = space
indent_size = 2
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
13 changes: 13 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,19 @@ bower_components
# OS
.DS_Store

# IDEs/Editor files
.idea/*
*.iml
*.sublime-*
projectFilesBackup
[._]*.s[a-w][a-z]
[._]s[a-w][a-z]
*.un~
Session.vim
.netrwhist
.vimrc
*~

# Builds
keys.txt
export.sh
Expand Down

0 comments on commit 875f7f4

Please sign in to comment.