write-good
Naive linter for English prose (by btford)
proselint
A linter for prose. (by amperser)
| write-good | proselint | |
|---|---|---|
| 6 | 11 | |
| 5,074 | 4,539 | |
| 0.2% | 0.3% | |
| 3.1 | 8.6 | |
| about 1 year ago | 4 days ago | |
| JavaScript | JavaScript | |
| MIT License | BSD 3-clause "New" or "Revised" License |
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
write-good
Posts with mentions or reviews of write-good.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2022-12-17.
-
Text Editor that supports spelling and grammar checking.
If you're using markdown, as a shameless plug, ThiefMD supports basic grammar checking, spell check, and English linting (passive voice detection, weasel words).
-
Is Grammarly a Keylogger? What Can You Do About It?
I like to use write-good[0] - it takes a glob and prints suggestions to stdout.
[0]: https://github.com/btford/write-good
-
Markdown Linting
write-good
- Btford/write-good: Naive linter for English prose
-
๐งข Stefan's Web Weekly #15
btford/write-good โ A naive linter for English prose.
-
ThiefMD: My Linux Markdown Quarantine Project
Like most markdown editors, we have typewriter scrolling, focus mode, and live preview. Code Blocks support syntax highlighting for a majority of languages. We also have a selection of themes and support CSS for export formatting. Some of our secret sauce includes write-good suggestions based on btford's write-good, which we ported to Vala.
proselint
Posts with mentions or reviews of proselint.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2025-07-01.
-
Grammarly acquires email startup Superhuman in AI platform push
For a more-classic, more-human experience (i.e., computer flags potential issues, you decide and correct if necessary) there are proselint and vale.sh.
https://github.com/amperser/proselint
https://vale.sh/
- Proselint โ A Linter for Prose
-
Getting Started with Technical Writing
So cool. Looks like the proseline site is down. For anyone else who wanted to read the approach - https://github.com/amperser/proselint/blob/b5b7536bec5fd461e...
-
Writing like a pro with vale & neovim
You can try proselint, which also has built-in support in null-ls. Its LaTeX support isn't perfect, but it's workable.
-
Help with autocompletion for prose writing.
Something like grammar-guard, proselint and/or language-tool?
-
Grammar checker for scientific writing
Yep, though there's not a lot to see! Follow the instructions for installing proselint at https://github.com/amperser/proselint and configure as follows:
-
Is there a reliable Grammarly package for Emacs?
Vale uses a customizable grammar checker, and you can download some open-source configurations to start working with from the link above. Then, you just need to add something like below to your Emacs configuration: (flycheck-define-checker vale "A prose linter" :command ("vale" "--output" "line" source) :standard-input nil :error-patterns ((error line-start (file-name) ":" line ":" column ":" (id (one-or-more (not (any ":")))) ":" (message) line-end)) :modes (markdown-mode org-mode text-mode) ) (add-to-list 'flycheck-checkers 'vale 'append) (setq flycheck-vale-executable "/usr/local/bin/vale") It looks like you can do something similar with Proselint, which looks wonderful and I have been meaning to try using in my day-to-day: https://unconj.ca/blog/linting-prose-in-emacs.html .
-
Markdown Linting
proselint
-
Setting up VIM for blogging
Full list here. Since the tool is a linter, it sounds like it should work with language servers. I use CoC.nvim for LSP features. Thankfully some smart guys have figured out how to make proselint work with coc.nvim & coc-diagnostic (see here). Now it works for my blog posts just like clangd does for my C++ code.
-
novelWriter 1.0
You're looking for proselint. https://github.com/amperser/proselint
What are some alternatives?
When comparing write-good and proselint you can also consider the following projects:
markdownlint - Markdown lint tool
vim-pencil - Rethinking Vim as a tool for writing
markdownlint - A Node.js style checker and lint tool for Markdown/CommonMark files.
vale - :pencil: A markup-aware linter for prose built with speed and extensibility in mind.
coc-diagnostic - diagnostic-languageserver extension for coc.nvim