Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
lcfr-eth committed May 10, 2023
0 parents commit 7f6e238
Show file tree
Hide file tree
Showing 93 changed files with 148,874 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# folders
build/
node_modules/
# files
**/*.less
**/*.css
**/*.scss
**/*.json
**/*.png
**/*.svg
33 changes: 33 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
module.exports = {
env: {
browser: true,
},
parser: "babel-eslint",
// airbnb disabled after upgrade to cra 4 due to errors in our code
extends: [/*"airbnb"*/ "plugin:prettier/recommended"],
plugins: [
/*"babel"*/
],
rules: {
"prettier/prettier": "warn",
"prettier/prettier": [
"warn",
{
endOfLine: "auto",
},
],
"import/prefer-default-export": "off",
"prefer-destructuring": "off",
"prefer-template": "off",
"react/prop-types": "off",
"react/destructuring-assignment": "off",
"no-console": "off",
"jsx-a11y/accessible-emoji": ["off"],
"jsx-a11y/click-events-have-key-events": ["off"],
"jsx-a11y/no-static-element-interactions": ["off"],
"no-underscore-dangle": "off",
"no-nested-ternary": "off",
"no-restricted-syntax": "off",
"no-plusplus": "off",
},
};
8 changes: 8 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"arrowParens": "avoid",
"bracketSpacing": true,
"printWidth": 120,
"singleQuote": false,
"tabWidth": 2,
"trailingComma": "all"
}
1 change: 1 addition & 0 deletions .sample.env
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
REACT_APP_PROVIDER=https://rinkeby.infura.io/v3/2717afb6bf164045b5d5468031b93f87
23 changes: 23 additions & 0 deletions build/asset-manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"files": {
"main.css": "./static/css/main.e191597a.chunk.css",
"main.js": "./static/js/main.03c2d10c.chunk.js",
"main.js.map": "./static/js/main.03c2d10c.chunk.js.map",
"runtime-main.js": "./static/js/runtime-main.e7e69005.js",
"runtime-main.js.map": "./static/js/runtime-main.e7e69005.js.map",
"static/css/2.db2a3f81.chunk.css": "./static/css/2.db2a3f81.chunk.css",
"static/js/2.e1e64991.chunk.js": "./static/js/2.e1e64991.chunk.js",
"static/js/2.e1e64991.chunk.js.map": "./static/js/2.e1e64991.chunk.js.map",
"index.html": "./index.html",
"static/css/2.db2a3f81.chunk.css.map": "./static/css/2.db2a3f81.chunk.css.map",
"static/css/main.e191597a.chunk.css.map": "./static/css/main.e191597a.chunk.css.map",
"static/js/2.e1e64991.chunk.js.LICENSE.txt": "./static/js/2.e1e64991.chunk.js.LICENSE.txt"
},
"entrypoints": [
"static/js/runtime-main.e7e69005.js",
"static/css/2.db2a3f81.chunk.css",
"static/js/2.e1e64991.chunk.js",
"static/css/main.e191597a.chunk.css",
"static/js/main.03c2d10c.chunk.js"
]
}
Loading

1 comment on commit 7f6e238

@vercel
Copy link

@vercel vercel bot commented on 7f6e238 May 10, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.