diff --git a/Projects/1-Beginner/Spellcheckr.md b/Projects/1-Beginner/Spellcheckr.md new file mode 100644 index 00000000..28139e88 --- /dev/null +++ b/Projects/1-Beginner/Spellcheckr.md @@ -0,0 +1,23 @@ +# Spellcheckr + +**Tier:** 1-Beginner + +Spellcheckr is a simple program that looks for words that don't repeat. Sometimes a word that's not repeated in a big file +is a word that's misspelled. This program lints these words specifically so we can catch these mistakes early. + +## User Stories + +- [ ] User can type into a textarea. +- [ ] User can click a button to generate a list of words on the right hand side. +- [ ] User can see all the words that only appear once. +- [ ] User will not see common programming statements like for, while, if, etc. + +## Bonus features + +- [ ] User can see the button opaque to 90% during the click. +- [ ] User can click the outputted words to find which line they're on. + +## Useful links and resources + +- [Textarea documentation](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/textarea) +- [Example of common programming statements](https://en.wikipedia.org/wiki/Statement_(computer_science))