Skip to content
This repository has been archived by the owner on Feb 26, 2021. It is now read-only.

Commit

Permalink
continuing with overhaul
Browse files Browse the repository at this point in the history
  • Loading branch information
colinmegill committed Sep 24, 2013
1 parent 1886213 commit e1a3c0a
Show file tree
Hide file tree
Showing 18 changed files with 11,962 additions and 11 deletions.
3 changes: 3 additions & 0 deletions .bowerrc
@@ -0,0 +1,3 @@
{
"directory": "bower_components"
}
10 changes: 10 additions & 0 deletions .editorconfig
@@ -0,0 +1,10 @@
# http://editorconfig.org
root = true

[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
4 changes: 4 additions & 0 deletions .gitignore
@@ -0,0 +1,4 @@
node_modules
bower_components
public/css
public/js
22 changes: 22 additions & 0 deletions .jshintrc
@@ -0,0 +1,22 @@
{
"node": true,
"es5": true,
"esnext": true,
"bitwise": true,
"camelcase": true,
"curly": true,
"eqeqeq": true,
"immed": true,
"indent": 2,
"latedef": true,
"newcap": true,
"noarg": true,
"quotmark": "single",
"regexp": true,
"undef": true,
"unused": true,
"strict": true,
"trailing": true,
"smarttabs": true,
"white": true
}
19 changes: 18 additions & 1 deletion Gruntfile.js
Expand Up @@ -148,7 +148,24 @@ module.exports = function(grunt) {
'handlebars': '../bower_components/handlebars/handlebars.runtime',
'backbone': '../bower_components/backbone/backbone',
'thorax': '../bower_components/thorax/thorax',
'bootstrap': '../bower_components/bootstrap/js/bootstrap'
'bootstrap': '../bower_components/bootstrap/js/bootstrap',
'd3': '../bower_components/d3/d3',
'lawnchair': '../bower_components/lawnchair/src/Lawnchair',
'flatuicheckbox': '../bower_components/flatui/js/flatui-checkbox'
'app': 'lib/App',
'backbone-polis': 'lib/backbone-polis',
'CommentShower': 'lib/CommentShower',
'CommentSubmitter': 'lib/CommentSubmitter',
'FeedbackSubmitter': 'lib/FeedbackSubmitter',
'keyboard': 'lib/keyboard',
'konfirm': 'lib/konfirm',
'LoginView': 'lib/LoginView',
'p': 'lib/p',
'polis': 'lib/polis',
'polisUtils': 'lib/polisUtils',
'StimulusSubmitter': 'lib/StimulusSubmitter',
'util': 'lib/util',
'VisView': 'lib/VisView'
},
shim: {
'handlebars': {
Expand Down

0 comments on commit e1a3c0a

Please sign in to comment.