Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianhajdin committed Dec 22, 2021
0 parents commit 772b11f
Show file tree
Hide file tree
Showing 40 changed files with 40,470 additions and 0 deletions.
60 changes: 60 additions & 0 deletions client/.eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
module.exports = {
env: {
browser: true,
es2021: true,
},
extends: ["plugin:react/recommended", "airbnb"],
parserOptions: {
ecmaFeatures: {
jsx: true,
},
ecmaVersion: 13,
sourceType: "module",
},
plugins: ["react"],
rules: {
"react/function-component-definition": 0,
"react/react-in-jsx-scope": 0,
"react/jsx-props-no-spreading": 0,
"import/extensions": 0,
"react/prop-types": 0,
"linebreak-style": 0,
"react/state-in-constructor": 0,
"import/prefer-default-export": 0,
"max-len": [2, 250],
"operator-linebreak": 0,
"comma-dangle": 0,
"no-console": 0,
"no-alert": 0,
"no-multiple-empty-lines": [
"error",
{
max: 1,
maxEOF: 1,
},
],
"no-underscore-dangle": [
"error",
{
allow: ["_d", "_dh", "_h", "_id", "_m", "_n", "_t", "_text"],
},
],
"object-curly-newline": 0,
"react/jsx-filename-extension": 0,
"react/jsx-one-expression-per-line": 0,
"jsx-a11y/click-events-have-key-events": 0,
"jsx-a11y/alt-text": 0,
"jsx-a11y/no-autofocus": 0,
"jsx-a11y/no-static-element-interactions": 0,
"react/no-array-index-key": 0,
"jsx-a11y/anchor-is-valid": [
"error",
{
components: ["Link"],
specialLink: ["to", "hrefLeft", "hrefRight"],
aspects: ["noHref", "invalidHref", "preferButton"],
},
],
quotes: [2, "double", { avoidEscape: true }],
},
};
27 changes: 27 additions & 0 deletions client/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
node_modules
.DS_Store
dist
dist-ssr
*.local

# vscode
.vscode
node_modules
.env
coverage
coverage.json
typechain

#Hardhat files
cache
artifacts

node_modules
.env
coverage
coverage.json
typechain

#Hardhat files
cache
artifacts
1 change: 1 addition & 0 deletions client/.prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{}
15 changes: 15 additions & 0 deletions client/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Basic Sample Hardhat Project

This project demonstrates a basic Hardhat use case. It comes with a sample contract, a test for that contract, a sample script that deploys that contract, and an example of a task implementation, which simply lists the available accounts.

Try running some of the following tasks:

```shell
npx hardhat accounts
npx hardhat compile
npx hardhat clean
npx hardhat test
npx hardhat node
node scripts/sample-script.js
npx hardhat help
```
1 change: 1 addition & 0 deletions client/images/animated.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 772b11f

Please sign in to comment.