Initial commit.

This commit is contained in:
Jonathan Cremin 2015-07-09 23:01:43 +01:00
commit b48a4e92e1
169 changed files with 7538 additions and 0 deletions

14
.eslintrc Normal file
View file

@ -0,0 +1,14 @@
{
"ecmaFeatures": {
"modules": true,
"jsx": true
},
"env": {
"node": true,
"es6": true
},
"rules": {
"quotes": [2, "single"],
"no-underscore-dangle": [0]
}
}