Skip to content

Commit ac2e8d6

Browse files
authored
Docs (#236)
* feat: basic docusaurus setup * feat: first tutorial and full setup * feat: i am going to win this spelling contest * fix: docs readme cleanup * feat: first tutorial
1 parent a195d8e commit ac2e8d6

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

65 files changed

+162884
-2
lines changed

Diff for: .github/actions/spelling/allow.txt

+2
Original file line numberDiff line numberDiff line change
@@ -31,3 +31,5 @@ vec
3131
rnaa
3232
javac
3333

34+
website
35+
audiodocs

Diff for: lefthook.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ pre-commit:
33
commands:
44
lint:
55
glob: '*.{js,ts,jsx,tsx}'
6-
run: npx eslint {staged_files}
6+
run: yarn lint
77
types:
88
glob: '*.{js,ts, jsx, tsx}'
9-
run: npx tsc --noEmit
9+
run: yarn typecheck
1010
commit-msg:
1111
parallel: true
1212
commands:

Diff for: package.json

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
"@commitlint/config-conventional": "^17.0.2",
2121
"@evilmartians/lefthook": "^1.5.0",
2222
"@react-native/eslint-config": "^0.73.1",
23+
"@types/raf": "^3.4.3",
2324
"commitlint": "^17.0.2",
2425
"eslint": "^8.51.0",
2526
"eslint-config-prettier": "^9.0.0",

Diff for: packages/audiodocs/.eslintrc

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"parser": "@babel/eslint-parser",
3+
"parserOptions": {
4+
"babelOptions": {
5+
"presets": ["@babel/preset-react"]
6+
}
7+
}
8+
}

Diff for: packages/audiodocs/.gitignore

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# Dependencies
2+
/node_modules
3+
4+
# Production
5+
/build
6+
7+
# Generated files
8+
.docusaurus
9+
.cache-loader
10+
11+
# Misc
12+
.DS_Store
13+
.env.local
14+
.env.development.local
15+
.env.test.local
16+
.env.production.local
17+
18+
npm-debug.log*
19+
yarn-debug.log*
20+
yarn-error.log*
21+
22+
# Yarn
23+
.yarn/*
24+
!.yarn/patches
25+
!.yarn/plugins
26+
!.yarn/releases
27+
!.yarn/sdks
28+
!.yarn/versions
29+
.yarn/cache

0 commit comments

Comments
 (0)