-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
201 changed files
with
22,093 additions
and
1,843 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: GitHub Actions Check | ||
run-name: ${{ github.actor }} Checks 🚀 | ||
on: [push, pull_request] | ||
jobs: | ||
Link-Format-Checks: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- run: scripts/link-format-chk.sh | ||
Build-Table-Checks: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- run: scripts/buildtable.pl >/tmp/table.mediawiki || exit 1 | ||
Diff-Checks: | ||
name: "Diff Checks (fails until number assignment)" | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 2 | ||
- run: scripts/diffcheck.sh | ||
Typo-Checks: | ||
name: "Typo Checks" | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Actions Repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Check spelling | ||
uses: crate-ci/typos@master |
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,6 @@ | ||
bip-0174/coinjoin-workflow.aux | ||
bip-0174/coinjoin-workflow.log | ||
bip-0174/coinjoin-workflow.pdf | ||
bip-0174/multisig-workflow.aux | ||
bip-0174/multisig-workflow.log | ||
bip-0174/multisig-workflow.pdf |
This file was deleted.
Oops, something went wrong.
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,44 @@ | ||
[default] | ||
extend-ignore-re = [ | ||
# NOTE: use here for regex patterns | ||
"xpub.*", | ||
"xprv.*", | ||
"3.*", # address | ||
"5.*", # address | ||
"private_key .*", | ||
"privkey .*", | ||
"tt.*", # <tt> tags | ||
"code.*", # <code> tags | ||
"\\w*<sub>", # prefix for <sub> tags | ||
"OP_SUCCESSx|\\d+", | ||
"pay.*", | ||
"ser.*", | ||
"prefix.*", | ||
"value: .*", | ||
] | ||
|
||
[default.extend-words] | ||
# NOTE: use here for false-positives | ||
anc = "anc" | ||
PSBT = "PSBT" | ||
ser = "ser" | ||
# Names | ||
Atack = "Atack" | ||
Meni = "Meni" | ||
Ono = "Ono" | ||
|
||
[files] | ||
extend-exclude = [ | ||
"/*/*.csv", | ||
"/*.d*", | ||
"/*/*.d*", | ||
"/*/*.go", | ||
"/*/*.json", | ||
"/*/*/*.json", | ||
"/*/*.mod", | ||
"/*/*.proto", | ||
"/*/*.py", | ||
"scripts", | ||
"/*/*.s*", | ||
"/*/*.t*", | ||
] |
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,12 @@ | ||
# Contributing Guidelines | ||
|
||
Apart from following [BIP 2](./bip-0002.mediawiki), | ||
we do CI checks to ensure that the proposed BIPs do not have common typos. | ||
These checks are done using [`typos`](https://github.com/crate-ci/typos). | ||
To check for typos locally, | ||
install [`typos`](https://github.com/crate-ci/typos) | ||
and then run in the root directory: | ||
|
||
```bash | ||
typos | ||
``` |
Oops, something went wrong.