Skip to content

Commit

Permalink
chore: delete stale ganache id in chainsIds
Browse files Browse the repository at this point in the history
chore: add double quotes in value fields in .eslintrc.yaml
chore: remove "run" from yarn scripts in package.json
  • Loading branch information
PaulRBerg committed Sep 3, 2021
1 parent 546076a commit 2de6b59
Showing 3 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .eslintrc.yaml
Original file line number Diff line number Diff line change
@@ -17,5 +17,5 @@ rules:
"@typescript-eslint/no-inferrable-types": "off"
"@typescript-eslint/no-unused-vars":
- error
- argsIgnorePattern: _
varsIgnorePattern: _
- argsIgnorePattern: "_"
varsIgnorePattern: "_"
1 change: 0 additions & 1 deletion hardhat.config.ts
Original file line number Diff line number Diff line change
@@ -16,7 +16,6 @@ import { NetworkUserConfig } from "hardhat/types";
dotenvConfig({ path: resolve(__dirname, "./.env") });

const chainIds = {
ganache: 1337,
goerli: 5,
hardhat: 31337,
kovan: 42,
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -68,7 +68,7 @@
"compile": "cross-env TS_NODE_TRANSPILE_ONLY=true hardhat compile",
"coverage": "cross-env CODE_COVERAGE=true hardhat coverage --solcoverjs ./.solcover.js --temp artifacts --testfiles \"./test/**/*.ts\"",
"deploy": "hardhat deploy:Greeter",
"lint": "yarn run lint:sol && yarn run lint:ts && yarn run prettier:check",
"lint": "yarn lint:sol && yarn lint:ts && yarn prettier:check",
"lint:sol": "solhint --config ./.solhint.json --max-warnings 0 \"contracts/**/*.sol\"",
"lint:ts": "eslint --config ./.eslintrc.yaml --ignore-path ./.eslintignore --ext .js,.ts .",
"postinstall": "husky install",

0 comments on commit 2de6b59

Please sign in to comment.