You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
spell_check_package() checks NEWS.md but not plain-text NEWS files. Please consider adding that. It's probably as simple as adding NEWS to the list of files recognized.
The text was updated successfully, but these errors were encountered:
In addition to NEWS, there's also the ChangeLog file that's officially acknowledged by R, cf. WRE. One may also wanna include LICENSE and LICENCE here.
It's the following file grep pattern that needs to be updated:
Related: BTW, that reg expr should probably also be protected with a trailing $ to avoid pickup up for instance *.md~ backup files. Also, the period can be escaped, e.g. \\. or [.].
HenrikBengtsson
changed the title
spell_check_package() to include NEWS too
spell_check_package() to include NEWS and ChangeLog too
Nov 2, 2020
Possibly consider allowing users to specify a list of non-standard files to add to the check via a file analogous to ./inst/WORDLIST. This would be a compliment of #63 (excluding specific files).
I came here hoping to find a way of adding ./.github/CONTRIBUTING.md but imagine there might be lots of package specific files. One of my package has some template markdown files in ./inst/ that are unique to it.
spell_check_package()
checksNEWS.md
but not plain-textNEWS
files. Please consider adding that. It's probably as simple as addingNEWS
to the list of files recognized.The text was updated successfully, but these errors were encountered: