initial setup of widget

This commit is contained in:
Benjamin Boudreau
2018-05-26 14:53:54 -04:00
commit 370b5cc7fa
9 changed files with 12564 additions and 0 deletions

16
.eslintrc Normal file
View File

@@ -0,0 +1,16 @@
{
"env": {
"browser": true,
"jest": true
},
"parser": "babel-eslint",
"extends": "airbnb",
"rules": {
"semi": [2, "never"],
"no-underscore-dangle": 0
},
"plugins": ["react"],
"settings": {
"import/resolver": "webpack"
}
}