cleaned up for github

This commit is contained in:
Sharon Kennedy
2020-05-07 10:45:17 -04:00
commit ec22cb8585
38 changed files with 13921 additions and 0 deletions

19
.eslintrc Normal file
View File

@@ -0,0 +1,19 @@
{
"env": {
"browser": true,
"jest": true
},
"parser": "babel-eslint",
"extends": "airbnb",
"rules": {
"no-underscore-dangle": 0,
"react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }],
"import/prefer-default-export": 1,
"import/no-extraneous-dependencies": 1,
"no-await-in-loop": 1
},
"plugins": ["react"],
"settings": {
"import/resolver": "webpack"
}
}