Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Mergeback to development #537

Merged
merged 2 commits into from
Dec 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions examples/wagmi/.eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
dist
build
19 changes: 19 additions & 0 deletions examples/wagmi/.eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
module.exports = {
parser: '@typescript-eslint/parser',
extends: [
'react-app',
'plugin:@typescript-eslint/recommended',
'plugin:prettier/recommended',
'plugin:jsx-a11y/recommended',
],
plugins: ['jsx-a11y'],
parserOptions: {
ecmaVersion: 2021,
sourceType: 'module',
},
rules: {
'@typescript-eslint/camelcase': 'off',
'@typescript-eslint/no-var-requires': 'off',
'@typescript-eslint/no-unused-vars': ['error', { ignoreRestSiblings: true }],
},
}
25 changes: 25 additions & 0 deletions examples/wagmi/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# production
/build

# misc
.DS_Store
.env
.env.local
.env.development.local
.env.test.local
.env.production.local
.idea

npm-debug.log*
yarn-debug.log*
yarn-error.log*
5 changes: 5 additions & 0 deletions examples/wagmi/.prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"printWidth": 120,
"trailingComma": "all",
"singleQuote": true
}
4 changes: 2 additions & 2 deletions examples/wagmi/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
"react-dom": "^18.2.0",
"react-scripts": "5.0.1",
"util": "^0.12.5",
"viem": "^1.19.13",
"wagmi": "^1.4.10",
"viem": "^1.19.15",
"wagmi": "^1.4.12",
"web-vitals": "^3.4.0"
},
"devDependencies": {
Expand Down
11,424 changes: 11,424 additions & 0 deletions examples/wagmi/yarn.lock

Large diffs are not rendered by default.

3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@
},
"workspaces": {
"packages": [
"packages/*",
"examples/*"
"packages/*"
]
},
"devDependencies": {
Expand Down
1,823 changes: 43 additions & 1,780 deletions yarn.lock

Large diffs are not rendered by default.

Loading