Skip to content

Commit 99378df

Browse files
committed
Basic template
0 parents  commit 99378df

File tree

6 files changed

+219
-0
lines changed

6 files changed

+219
-0
lines changed

.clabot

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"contributors": [
3+
"expede"
4+
]
5+
}

.custom-words.txt

Lines changed: 157 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,157 @@
1+
ACL
2+
ACLs
3+
AlicePhone
4+
AliceRoot
5+
Attenuations
6+
Aud
7+
Auth
8+
AuthorityA
9+
AuthorityB
10+
BT
11+
Bluesky
12+
BxZ
13+
CIDs
14+
CIDv
15+
CNAME
16+
CRDT
17+
Canonicalization
18+
DAG
19+
DAGs
20+
DHT
21+
DID's
22+
DIDs
23+
DNS
24+
DNSLinks
25+
Datalog
26+
ECDSA
27+
EdDSA
28+
GLVVQR
29+
Golang
30+
Gozalishvili
31+
HEHYSF
32+
Haus
33+
Holmgren
34+
Irakli
35+
JSON
36+
JWT
37+
JWTs
38+
Karp
39+
Krüger
40+
LD
41+
Lemmer
42+
Memoized
43+
Merkle
44+
Mikael
45+
MkiTBz
46+
OCAP
47+
OCapN
48+
PITM
49+
PKI
50+
Philipp
51+
RESTful
52+
RL
53+
RSA
54+
Redelegating
55+
Redelegation
56+
Revoker
57+
SDSI
58+
SHA
59+
SPKI
60+
ScopeA
61+
ScopeB
62+
Seitan
63+
Subschemes
64+
TXT
65+
TypeScript
66+
UCAN
67+
UCAN's
68+
UCANs
69+
URI
70+
URIs
71+
Vandevelde
72+
WG
73+
WebNative
74+
Webber
75+
ZCAP
76+
Zelenka
77+
adoptability
78+
alice
79+
attenuations
80+
aud
81+
auth
82+
autonumber
83+
bene
84+
blockchain
85+
codec
86+
codecs
87+
crudGraph
88+
cryptographically
89+
del
90+
delegable
91+
delegator
92+
dereference
93+
disambiguates
94+
disjunct
95+
djdX
96+
dns
97+
enums
98+
extractable
99+
filesystem
100+
fooey
101+
hawaii
102+
init
103+
inlining
104+
interconnectivity
105+
interpretable
106+
invoker
107+
iss
108+
js
109+
json
110+
lifecycle
111+
lockboxes
112+
mDooWp
113+
mailto
114+
matcher
115+
memoization
116+
msg
117+
msgGraph
118+
multicodec
119+
namespace
120+
namespaced
121+
namespaces
122+
nota
123+
plaintext
124+
potencies
125+
pre
126+
preimages
127+
quG
128+
reauthorizations
129+
recommentations
130+
redelegate
131+
redelegates
132+
rootAud
133+
rootCap
134+
rootIss
135+
runtime
136+
sdarnit
137+
sequenceDiagram
138+
situationally
139+
stateful
140+
subdelegate
141+
subgraph
142+
subscheme
143+
tradeoffs
144+
trustless
145+
trustlessly
146+
ucan
147+
un
148+
unary
149+
unresolvable
150+
url
151+
validatable
152+
validator
153+
validator's
154+
verifiability
155+
wnfs
156+
xyz
157+
ymuepAQ

.github/.github/CODEOWNERS

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# These owners will be the default owners for everything in
2+
# the repo. Unless a later match takes precedence,
3+
# @global-owner1 and @global-owner2 will be requested for
4+
# review when someone opens a pull request.
5+
* @expede @matheus23 @gozala @dholms
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: Check Markdown links
2+
3+
on: push
4+
5+
jobs:
6+
markdown-link-check:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@master
10+
- uses: gaurav-nelson/github-action-markdown-link-check@v1
11+
with:
12+
use-quiet-mode: 'yes'
13+
check-modified-files-only: 'yes'
14+
base-branch: 'main'
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: Spellcheck Action
2+
on: push
3+
4+
jobs:
5+
build:
6+
name: Spellcheck
7+
runs-on: ubuntu-latest
8+
steps:
9+
# The checkout step
10+
- uses: actions/checkout@master
11+
- uses: rojopolis/spellcheck-github-actions@0.24.0
12+
name: Spellcheck

.spellcheck.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
matrix:
2+
- name: Markdown
3+
aspell:
4+
lang: en
5+
d: en_US
6+
dictionary:
7+
encoding: utf-8
8+
wordlists: [".custom-words.txt"]
9+
pipeline:
10+
- pyspelling.filters.markdown:
11+
- pyspelling.filters.html:
12+
comments: false
13+
ignores:
14+
- code
15+
- pre
16+
- pyspelling.filters.context:
17+
context_visible_first: true
18+
escapes: \\[\\`~]
19+
delimiters:
20+
- open: '(?s)^(?P<open> *`{3,})$'
21+
close: '^(?P=open)$'
22+
- open: '(?P<open>`+)'
23+
close: '(?P=open)'
24+
sources:
25+
- 'README.md'
26+
default_encoding: utf-8

0 commit comments

Comments
 (0)