mirror of
https://github.com/Xahau/xahau.js.git
synced 2025-11-04 13:05:49 +00:00
* remove tx serialization check * clean up * update changelog * bring back some of the logic to check txs * move memo logic to `validate` * move other checks to `validate` * fix tests * update cspell
55 lines
1.4 KiB
JSON
55 lines
1.4 KiB
JSON
{
|
|
"editor.tabSize": 2,
|
|
"cSpell.words": [
|
|
"hostid",
|
|
"keypair",
|
|
"keypairs",
|
|
"multisign",
|
|
"multisigned",
|
|
"multisigning",
|
|
"preauthorization",
|
|
"secp256k1",
|
|
"Setf"
|
|
],
|
|
"[javascript]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
"editor.formatOnSave": true
|
|
},
|
|
"[javascriptreact]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
"editor.formatOnSave": true
|
|
},
|
|
"[typescript]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
"editor.formatOnSave": true
|
|
},
|
|
"[typescriptreact]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
"editor.formatOnSave": true
|
|
},
|
|
"eslint.alwaysShowStatus": true,
|
|
"eslint.lintTask.enable": true,
|
|
"eslint.codeAction.showDocumentation": {
|
|
"enable": true
|
|
},
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll.eslint": true
|
|
},
|
|
"files.insertFinalNewline": true,
|
|
"files.trimFinalNewlines": true,
|
|
"files.trimTrailingWhitespace": true,
|
|
"files.watcherExclude": {
|
|
"**/.git/objects/**": true,
|
|
"**/.git/subtree-cache/**": true,
|
|
"**/.hg/store/**": true
|
|
},
|
|
"search.exclude": {
|
|
"**/.git": true,
|
|
"**/node_modules": true,
|
|
"**/tmp": true,
|
|
"**/docs/**/*.html": true,
|
|
"**/fixtures/**/*.json": true,
|
|
"**/docs/assets": true
|
|
},
|
|
}
|