initial commit

This commit is contained in:
Robin Linus 2015-12-18 16:50:36 +01:00
commit f5b2b47136
46 changed files with 2350 additions and 0 deletions

24
.jshintrc Normal file
View file

@ -0,0 +1,24 @@
{
"node": true,
"browser": true,
"bitwise": true,
"camelcase": true,
"curly": true,
"eqeqeq": true,
"immed": true,
"indent": 2,
"latedef": true,
"noarg": true,
"quotmark": "single",
"undef": true,
"unused": true,
"newcap": false,
"globals": {
"wrap": true,
"unwrap": true,
"Polymer": true,
"Platform": true,
"page": true,
"app": true
}
}