Skip to content

Commit

Permalink
fix: cspell err and exclude lib from prettier and lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Keyrxng committed Feb 19, 2024
1 parent 32e523d commit 6854e2f
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 6 deletions.
3 changes: 2 additions & 1 deletion .cspell.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
{
"$schema": "https://raw.githubusercontent.com/streetsidesoftware/cspell/main/cspell.schema.json",
"version": "0.2",
"ignorePaths": ["**/*.json", "**/*.css", "node_modules", "**/*.log"],
"ignorePaths": ["**/*.json", "**/*.css", "node_modules", "**/*.log", "/lib"],
"useGitignore": true,
"language": "en",
"words": [
"solmate",
"binkey",
"binsec",
"cirip",
Expand Down
2 changes: 2 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
node_modules
/lib
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ http://localhost:8080?claim=eyJwZXJtaXQiOnsicGVybWl0dGVkIjp7InRva2VuIjoiMHgxMWZF

This section describes how to invalidate the following [permit](https://github.com/ubiquity/ubiquity-dollar/issues/643#issuecomment-1607152588) (i.e. invalidate a permit2 nonce)

1. Setup `.env` file with the required env varibales: `NONCE` (nonce number), `NONCE_SIGNER_ADDRESS` (i.e. the bot's wallet) and `RPC_PROVIDER_URL`. For this [permit URL](https://github.com/ubiquity/ubiquity-dollar/issues/643#issuecomment-1607152588) the `.env` file will look like this:
1. Setup `.env` file with the required env variables: `NONCE` (nonce number), `NONCE_SIGNER_ADDRESS` (i.e. the bot's wallet) and `RPC_PROVIDER_URL`. For this [permit URL](https://github.com/ubiquity/ubiquity-dollar/issues/643#issuecomment-1607152588) the `.env` file will look like this:

```
NONCE="9867970486646789738815952475601005014850694197864057371518032581271992954680"
Expand Down
2 changes: 1 addition & 1 deletion static/styles/rewards/claim-table.css
Original file line number Diff line number Diff line change
Expand Up @@ -328,4 +328,4 @@ table td {
}
table th {
padding-left: 16px;
}
}
2 changes: 1 addition & 1 deletion static/styles/rewards/media-queries.css
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@ header span:first-child::after {
padding-left: env(safe-area-inset-left);
padding-right: env(safe-area-inset-right);
}
}
}
2 changes: 1 addition & 1 deletion static/styles/rewards/pay.css
Original file line number Diff line number Diff line change
Expand Up @@ -144,4 +144,4 @@ footer {
canvas {
width: 100vw;
height: 100vh;
}
}
2 changes: 1 addition & 1 deletion static/styles/rewards/rewards.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
@import url("../proxima.css");
@import url("../toast.css");
@import url("../fa.css");
@import url("light-mode.css");
@import url("light-mode.css");

0 comments on commit 6854e2f

Please sign in to comment.