Problem
Problem:
It takes too long to spell check a single document. This shows up in the ESLint plugin in VSCode. The time to check a 1000 line document is only a few milliseconds. But the startup CSpell startup time is closer to 1 second on some machines. This make spell checking using the ESLint Plugin painful.
Solution
The idea is to have a Daemon / Server that stays running. This removes the cost of startup while adding a small amount to communication costs.
Alternatives
No response
Additional Context
No response
Code of Conduct