Establish initial structure, create demo.html

So far this does nothing but clear the screen to magenta, but it's a
start.
This commit is contained in:
Christopher Willis-Ford
2016-05-13 10:48:45 -07:00
commit 51e17c57a9
25 changed files with 598 additions and 0 deletions

17
.eslintrc Normal file
View File

@@ -0,0 +1,17 @@
{
"rules": {
"curly": [2, "multi-line"],
"eol-last": [2],
"indent": [2, 4],
"quotes": [2, "single"],
"linebreak-style": [2, "unix"],
"max-len": [2, 80, 4],
"semi": [2, "always"],
"strict": [2, "never"]
},
"env": {
"node": true,
"browser": true
},
"extends": "eslint:recommended"
}