-
Notifications
You must be signed in to change notification settings - Fork 497
Open
Labels
Description
See #3631 (comment).
From the README:
Entry with one word, but with automatic fix disabled:
clas->class, disabled because of name clash in c++Note that there isn't a comma at the end of the line. The last argument is treated as the reason why a suggestion cannot be automatically applied.
Perhaps we should disable automatic fixes by adding a comment to all or part of the words in the rare dictionary. Example:
$ cat DICTIONARY.txt
lien->line, actually a word in the OED and SCOWL (And Friends)
$
$ cat test.txt
lien
$
$ codespell -w -D DICTIONARY.txt test.txt
test.txt:1: lien ==> line | actually a word in the oed and scowl (and friends)
$
$ codespell -D DICTIONARY.txt test.txt
test.txt:1: lien ==> line | actually a word in the oed and scowl (and friends)
$