feat(rewrite): Rewrote the whole thing in ReactJS 💅 (#22)

* feat(rewrite): Rewrote the whole thing in ReactJS 💅

* chore(docs): Updated
This commit is contained in:
Techno Tim
2021-08-25 19:16:09 -05:00
committed by GitHub
parent d9c4c97606
commit 84b1a800c7
70 changed files with 10190 additions and 899 deletions

42
.eslintrc Normal file
View File

@@ -0,0 +1,42 @@
{
"parser": "@babel/eslint-parser",
"settings": {
"react": {
"pragma": "React",
"version": "detect"
}
},
"plugins": ["jsx","prettier"],
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"prettier"
],
"env": {
"jest": true,
"jasmine": true,
"node": true,
"browser": true,
"es6": true
},
"rules": {
"prettier/prettier":
["error", {
"singleQuote": true,
"jsxSingleQuote": false,
"arrowParens": "avoid",
"semi": true,
"trailingComma": "all",
"spaceAfterFunction": true
}],
"no-console": ["error", { "allow": ["warn", "error"] }],
"no-alert": "error",
"no-debugger": "error",
"prefer-const": "error",
"prefer-arrow-callback": "error",
"no-unused-vars": ["error", {"args": "none"}],
"react/prop-types": 0,
"react/no-unescaped-entities": 0
}
}