Skip to content

Commit

Permalink
feat: Add typo checking script
Browse files Browse the repository at this point in the history
  • Loading branch information
sweep-ai[bot] authored Dec 27, 2023
1 parent ff75477 commit 2c19bf8
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions tools/typos
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#!/bin/bash

# Install necessary dependencies
sudo apt-get update
sudo apt-get install -y aspell

# Loop over all input arguments
for file in "$@"
do
# Check for typos using aspell
aspell check "$file"
done

0 comments on commit 2c19bf8

Please sign in to comment.