59b98bcd36
* nextjs project * new structure under Web3Modal * Add Web3Modal + Wagmi v2 example in React (#422) * refactor next * remove logs * update example * add custom button * add custom button * Update dapps/web3modal/react/package.json --------- Co-authored-by: Blessing Samuel <samuelblessing125@gmail.com>
37 lines
767 B
JavaScript
37 lines
767 B
JavaScript
module.exports = {
|
|
"env": {
|
|
"browser": true,
|
|
"es2021": true
|
|
},
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:@typescript-eslint/recommended",
|
|
"plugin:react/recommended"
|
|
],
|
|
"overrides": [
|
|
{
|
|
"env": {
|
|
"node": true
|
|
},
|
|
"files": [
|
|
".eslintrc.{js,cjs}"
|
|
],
|
|
"parserOptions": {
|
|
"sourceType": "script"
|
|
}
|
|
}
|
|
],
|
|
"parser": "@typescript-eslint/parser",
|
|
"parserOptions": {
|
|
"ecmaVersion": "latest",
|
|
"sourceType": "module"
|
|
},
|
|
"plugins": [
|
|
"@typescript-eslint",
|
|
"react"
|
|
],
|
|
"rules": {
|
|
"react/react-in-jsx-scope": "off"
|
|
}
|
|
}
|