Skip to content

Commit

Permalink
Merge pull request #60 from Avelous/staging
Browse files Browse the repository at this point in the history
fixed lint error
  • Loading branch information
Avelous authored Jul 25, 2024
2 parents d38c020 + 977fd6c commit 1c5e846
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 11 deletions.
11 changes: 4 additions & 7 deletions packages/hardhat/.eslintignore
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
# folders
.next
artifacts
cache
contracts
node_modules/
typechain-types
# files
**/*.less
**/*.css
**/*.scss
**/*.json
**/*.png
**/*.svg
**/generated/**/*
9 changes: 5 additions & 4 deletions packages/hardhat/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
{
"env": {
"node": true
},
"parser": "@typescript-eslint/parser",
"extends": ["next/core-web-vitals", "plugin:prettier/recommended", "plugin:@typescript-eslint/recommended"],
"extends": ["plugin:prettier/recommended", "plugin:@typescript-eslint/recommended"],
"rules": {
"@typescript-eslint/no-unused-vars": ["error"],
"@typescript-eslint/no-explicit-any": ["off"],
"@typescript-eslint/ban-ts-comment": ["off"],
"prettier/prettier": [
"warn",
{
"endOfLine": "auto"
}
],
"@next/next/no-page-custom-font": ["off"]
]
}
}

0 comments on commit 1c5e846

Please sign in to comment.