Initial commit

This commit is contained in:
2017-12-22 16:13:54 +01:00
commit 59b24a92a1
2019 changed files with 97208 additions and 0 deletions

21
.eslintrc.json Normal file
View File

@@ -0,0 +1,21 @@
{
"extends": ["eslint:recommended", "google"],
"parserOptions": {
"ecmaVersion": 6
},
"env": {
"browser": true
},
"plugins": [
"html"
],
"rules": {
"brace-style": "off",
"new-cap": ["error", { "capIsNewExceptions": ["Polymer"] }],
"no-var": "off",
"require-jsdoc": "off"
},
"globals": {
"Polymer": true
}
}