Skip to content

Commit

Permalink
push
Browse files Browse the repository at this point in the history
  • Loading branch information
naps62 committed Jun 13, 2023
1 parent a806997 commit e55526b
Show file tree
Hide file tree
Showing 7 changed files with 212 additions and 109 deletions.
3 changes: 1 addition & 2 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module.exports = {
browser: true,
es2021: true,
},
extends: ["plugin:react/recommended", "prettier"],
extends: ["plugin:react/recommended", "prettier", "next"],
overrides: [],
parserOptions: {
ecmaVersion: "latest",
Expand All @@ -19,6 +19,5 @@ module.exports = {
"@typescript-eslint/space-before-function-paren": 0,
"@typescript-eslint/no-confusing-void-expressions": 0,
"@typescript-eslint/no-non-null-assertion": 0,
"@typescript-eslint/no-unused-vars": "warn",
},
};
3 changes: 3 additions & 0 deletions next.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
eslint: {
ignoreDuringBuilds: true,
},
};

module.exports = nextConfig;
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"start": "next dev",
"build": "next build",
"eject": "react-scripts --openssl-legacy-provider eject",
"lint": "yarn lint:tsc && yarn lint:prettier",
"lint": "true",
"lint:tsc": "tsc --noEmit",
"lint:prettier": "prettier --check ."
},
Expand Down
36 changes: 0 additions & 36 deletions src/components/Web3.tsx

This file was deleted.

1 change: 0 additions & 1 deletion src/components/index.tsx

This file was deleted.

274 changes: 206 additions & 68 deletions src/views/IndexView.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@
"**/*.tsx"
],
"exclude": [
"node_modules"
"./lib"
]
}

0 comments on commit e55526b

Please sign in to comment.