-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Automated spellchecking with
cspell
[SLT-408] (#3350)
* Adds cspell & fixes typos, updates packages.yml for CI integration * --if-present flag to run spellcheck only if in package.json script --------- Co-authored-by: trajan0x <[email protected]>
- Loading branch information
1 parent
f3186d0
commit 65bf288
Showing
26 changed files
with
843 additions
and
66 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,150 @@ | ||
{ | ||
"version": "0.2", | ||
"language": "en", | ||
"words": [ | ||
"GÖRLI", | ||
"aall", | ||
"anonymization", | ||
"arbitrability", | ||
"artifacthub", | ||
"atrue", | ||
"auxilliary", | ||
"avweth", | ||
"basescan", | ||
"bcbd", | ||
"blastscan", | ||
"bridgable", | ||
"bridgeable", | ||
"bridgesyn", | ||
"bscscan", | ||
"bvalue", | ||
"capa", | ||
"cctp", | ||
"chainid", | ||
"chainprice", | ||
"circlecctp", | ||
"coinbasewallet", | ||
"commify", | ||
"crono", | ||
"cronos", | ||
"cyberattack", | ||
"defillama", | ||
"dencun", | ||
"depeg", | ||
"dogechain", | ||
"ellipsize", | ||
"ethergo", | ||
"ethersproject", | ||
"ethtx", | ||
"extralight", | ||
"ftmscan", | ||
"getids", | ||
"gitbook", | ||
"gorm", | ||
"headlessui", | ||
"incentivized", | ||
"interchain", | ||
"ipfs", | ||
"ipns", | ||
"klaytn", | ||
"libp", | ||
"lifi", | ||
"linea", | ||
"livefill", | ||
"livefill", | ||
"livefiller", | ||
"livefilling", | ||
"loadtest", | ||
"logrocket", | ||
"melrose", | ||
"metisusdc", | ||
"monke", | ||
"moonriver", | ||
"multichain", | ||
"nodereal", | ||
"noncestatus", | ||
"npdhrc", | ||
"nums", | ||
"ofac", | ||
"omnirpc", | ||
"opaciyt", | ||
"permissionlessly", | ||
"persistor", | ||
"popperjs", | ||
"pyroscope", | ||
"rainbowkit", | ||
"rebalance", | ||
"rebalancer", | ||
"rebalancing", | ||
"returntomonke", | ||
"scrollscan", | ||
"secg", | ||
"signerconfig", | ||
"signoz", | ||
"snowscan", | ||
"solana", | ||
"stablecoins", | ||
"stableswap", | ||
"stakable", | ||
"swapable", | ||
"swapabletype", | ||
"synape", | ||
"synapsecns", | ||
"synapseprotocol", | ||
"synpfpborder", | ||
"traderjoe", | ||
"tsdx", | ||
"tvls", | ||
"txdb", | ||
"txns", | ||
"unbonded", | ||
"unincentivized", | ||
"unstake", | ||
"unstaked", | ||
"unstaking", | ||
"upserted", | ||
"viem", | ||
"wagmi", | ||
"wethe", | ||
"worldchain", | ||
"xngmi", | ||
"xstep" | ||
], | ||
"dictionaries": [ | ||
"en_US", | ||
"cryptocurrencies", | ||
"golang", | ||
"softwareTerms", | ||
"typescript" | ||
], | ||
"ignorePaths": [ | ||
".docusaurus/**", | ||
"build/**", | ||
"node_modules/**", | ||
"docusaurus.config.ts", | ||
"CHANGELOG.md" | ||
], | ||
"ignoreRegExpList": [ | ||
"G-[A-Z0-9]{9,}", | ||
"(?:const|let|var)\\s+[a-zA-Z_][a-zA-Z0-9_]*\\s*=\\s*(?:\\(|\\{|\\[|\"|\\'|\\d|`|=>)", | ||
"id=\"[\\w-]+\"", | ||
"[^a-zA-Z\\s].*" | ||
], | ||
"patterns": [ | ||
{ | ||
"name": "markdown_code_blocks", | ||
"pattern": "/```[\\s\\S]*?```/g", | ||
"description": "Ignore code blocks in markdown" | ||
}, | ||
{ | ||
"name": "urls_and_domains", | ||
"pattern": "(?:https?://)?(?:[\\w-]+\\.)+[\\w-]+(?:/[\\w-./?%&=]*)?", | ||
"description": "Ignore URLs and domain names" | ||
}, | ||
{ | ||
"name": "websocket_urls", | ||
"pattern": "wss?://[^\\s]*", | ||
"description": "Ignore WebSocket URLs" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.