Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v0.1 #1

Open
wants to merge 14 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# These owners will be the default owners for everything in
# the repo. Unless a later match takes precedence,
# @global-owner1 and @global-owner2 will be requested for
# review when someone opens a pull request.
* @expede
15 changes: 15 additions & 0 deletions .github/workflows/spellcheck.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Spellcheck Action
on: push

jobs:
build:
name: Spellcheck
runs-on: ubuntu-latest
steps:
# The checkout step
- uses: actions/checkout@master
- uses: matheus23/[email protected]
name: Spellcheck
with:
files-to-check: "**/*.md"
words-to-ignore-file: ./.github/workflows/words-to-ignore.txt
147 changes: 147 additions & 0 deletions .github/workflows/words-to-ignore.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,147 @@
ABACM
Agoric
Antigoals
AquaVM
Atomics
Auth
Autocodec
BYOL
Bacalhau
Berkley
BucketVM
CHa
CIDs
CLA
CapTP
Config
DNS
DSLs
Ericsson
FHE
FS
FVM
Filecoin
Frans
HydroLogic
I
IAM
IPC
IPFS
IPFS-FAN
IPLD
IPLI
IPNS
IPVM
JIT
JSON
Kaashoek
Lampson
Lemmer-Webber
Lifecycle
Linearizability
MERCHANTABILITY
Memoized
Memoizing
OCAP
OCaml
OCapN
Perlis
Plotkin
PoPs
Pre-Draft
Prenegotiated
README
Requestor
Riise
Roadmap
S3
SPDX-License-Identifier
SPKI
STM
Saltzer
SemVer
Spiritely
TTL
Transactionality
UC
UCAN
UI
URI
VM
Varsig
WASI
Wasm
Wasm-on-IPFS
Web3
WebAssembly
Zelenka
acceptor
acyclic
aggragate
behaviours
codec
codecs
codename
cron
cryptographic
dataflow
de
declaratively
decrypt
decrypted
defunctionalization
dereference
dereferencing
effectful
effectfulness
enqueuing
expede
facto
hardcoded
idempotence
individuals'
inspectable
labelled
low-ish
md
memoization
merchantability
micropayment
microservice
middleware
modelled
namespace
no_good_woman
non-effectful
non-sublicensable
nontermination
ocap
others'
patentable
pipelining
pre-resolved
preimage
prenegotiated
repos
reproducibly
requestor
rethrow
runtimes
serverless
sexualized
signalling
socio-economic
spiral_calendar
struct
subjobs
subtype
tradeoff
transferee
trustless
ucan-chan
untrusted
v0
verifiability
wasm-ipfs
woman_scientist
world_map
26 changes: 26 additions & 0 deletions .spellcheck.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
matrix:
- name: Markdown
aspell:
lang: en
d: en_US
dictionary:
encoding: utf-8
wordlists: [".github/workflows/words-to-ignore.txt"]
pipeline:
- pyspelling.filters.markdown:
- pyspelling.filters.html:
comments: false
ignores:
- code
- pre
- pyspelling.filters.context:
context_visible_first: true
escapes: \\[\\`~]
delimiters:
- open: '(?s)^(?P<open> *`{3,})$'
close: '^(?P=open)$'
- open: '(?P<open>`+)'
close: '(?P=open)'
sources:
- 'README.md'
default_encoding: utf-8
Loading