Skip to content
Merged
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
26 changes: 26 additions & 0 deletions .github/workflows/spellcheck.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# checks the spelling of code in all files
name: 'Check spelling'
on:
merge_group:
branches:
- main
push:
branches:
- main
pull_request:
branches:
- main

jobs:
spellcheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: streetsidesoftware/cspell-action@v6
with:
files: '**/*'
root: '.'
config: './cspell.json'
inline: warning
strict: true
use_cspell_files: false
19 changes: 19 additions & 0 deletions cspell.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"language": "en",
"words": [
"worklets",
"worklet",
"workletization",
"workletize",
"workletizes",
"workletized",
"barfoo",
"devs"
],
"ignorePaths": [
"node_modules",
"docs/src/components/Testimonials"
],
"useGitignore": true
}

2 changes: 1 addition & 1 deletion docs/src/components/Testimonials/TestimonialList/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const items = [
{
author: 'Marc Rousavy',
company: 'Margelo',
body: 'We’ve used Reanimated and Gesture Handler for a ton of apps already - it’s amazingly simple yet poweful! 😍',
body: 'We’ve used Reanimated and Gesture Handler for a ton of apps already - it’s amazingly simple yet powerful! 😍',
link: 'https://twitter.com/mrousavy/status/1754909520571019756',
image: {
alt: 'marc rousavy',
Expand Down