Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
albertfolch-redeemeum committed Jan 16, 2025
1 parent 7704b40 commit 63c17c0
Show file tree
Hide file tree
Showing 42 changed files with 7,065 additions and 559 deletions.
13 changes: 9 additions & 4 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@
"ecmaVersion": 2021,
"sourceType": "module"
},
"plugins": ["@typescript-eslint", "eslint-plugin-tsdoc"],
"plugins": [
"@typescript-eslint",
"eslint-plugin-tsdoc",
"unused-imports",
"tsdoc"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
Expand All @@ -22,7 +27,7 @@
"endOfLine": "auto"
}
],
"tsdoc/syntax": "warn"
},
"ignorePatterns": ["packages/react-kit/src/lib/uniswap/__generated__"]
"tsdoc/syntax": "warn",
"unused-imports/no-unused-imports": "warn"
}
}
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,5 @@ coverage/
scripts/abi-signatures.csv

# temp directory
/temp
/temp
storybook-static
4 changes: 4 additions & 0 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

npx lint-staged packages/react-kit
52 changes: 42 additions & 10 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,9 @@
"assemblyscript": "0.19.23",
"commander": "^9.4.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-prettier": "^5.2.2",
"eslint-plugin-tsdoc": "^0.2.17",
"eslint-plugin-unused-imports": "^4.1.4",
"ethers-v6": "npm:ethers@^6.10.0",
"form-data": "^4.0.0",
"graphql": "^16.8.1",
Expand Down
32 changes: 32 additions & 0 deletions packages/react-kit/.eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# 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.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*

storybook-static

.env
*storybook.log
dist

packages/react-kit/src/lib/uniswap/__generated__
packages/react-kit/src/lib/lens/generated.ts
3 changes: 2 additions & 1 deletion packages/react-kit/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,5 @@ yarn-error.log*
storybook-static

.env
*storybook.log
*storybook.log
dist
1 change: 0 additions & 1 deletion packages/react-kit/.husky/pre-commit

This file was deleted.

Loading

0 comments on commit 63c17c0

Please sign in to comment.