testthedocs / vale-styles

Checks for Vale based on popular style guides
MIT License
45 stars 9 forks source link

Don't start sentence with so -- false positives #27

Open brandonkal opened 4 years ago

brandonkal commented 4 years ago

Describe The Bug write-good and ttd-lite styles don't actually test to see if something starts with the word. They are only testing to see if the word exists anywhere in the text.

ajitid commented 1 year ago

This is happening because ignorecase: true is passed in here and here. Removing that line makes the rule works as expected.