Skip to content

Commit

Permalink
Initial commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
davideschiera committed May 24, 2016
0 parents commit 82cc83e
Show file tree
Hide file tree
Showing 38 changed files with 3,912 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .bowerrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"directory" : "app/bower_components"
}
24 changes: 24 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# EditorConfig helps developers define and maintain consistent
# coding styles between different editors and IDEs
# editorconfig.org

root = true

[*]
charset = utf-8

# Unix-style newlines with a newline ending every file
end_of_line = lf
insert_final_newline = true

# 4 space indentation
indent_style = space
indent_size = 4

# Trim trailing whitespaces
trim_trailing_whitespace = true


# Don't trim trailing whitespaces on MarkDown documents
[*.md]
trim_trailing_whitespace = false
20 changes: 20 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Personal editor preferences
# Feel free to add the editor preferences of your own editor or IDE if needed
.brackets.json
.idea

# Folders
/.tmp
/app/bower_components
/dist
/node_modules

# Files
_*.bat
.DS_Store
.DS_Store?
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
serve.js
50 changes: 50 additions & 0 deletions .jshintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
{
"node": true,
"browser": true,
"esnext": true,
"bitwise": false,
"curly": false,
"eqeqeq": true,
"eqnull": true,
"immed": true,
"latedef": false,
"newcap": true,
"noarg": true,
"undef": true,
"strict": false,
"trailing": false,
"smarttabs": true,
"debug": false,
"scripturl": true,
"globals": {
"Ember": true,
"DS": true,
"Messenger": true,
"Handlebars": true,
"SampleApp": true,
"$": true,
"d3": true,
"crossfilter": true,
"colorbrewer": true,
"dc": true,
"moment": true,
"SockJS": true,
"ga": true,
"Airbrake": true,
"Terminal": true,
"shortcut": true,
"AmCharts": true,
"Frzn": true,
"Grid": true,
"require": true,
"I18n": true,
"eqjs": true,
"Mousetrap": true,
"Modernizr": true,
"Sortable": true,
"Clipboard": true,
"_": true,
"Tether": true,
"Popper": true
}
}
5 changes: 5 additions & 0 deletions .jshintrc-dev
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"extends": ".jshintrc",
"debug": true,
"noarg": false
}
Loading

0 comments on commit 82cc83e

Please sign in to comment.