forked from adrianhajdin/project_web3.0
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 772b11f
Showing
40 changed files
with
40,470 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }], | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
``` |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.