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
woke has been left with Noriko's and all other PRs not being reviewed for years,
hence we have been using our fork.
This PR replaces woke with codespell to detect non-inclusive language and check spelling
Codespell provides a built-in dictionary with recommended non-inclusive terms:
https://github.com/codespell-project/codespell/blob/main/codespell_lib/data/dictionary_usage.txt
Codespell supports using custom dictionaries so we can add to the list if we want.
`ignore-multiline-regex` in the `.codespellrc` config allows for disabling
codespell for a block of lines:
```
# codespell:ignore-begin
... codespell will not look at this text.
# codespell:ignore-end
```
You can ignore words inline by adding a comment like `# codespell:ignore word`.
You can ignore files and directories, and words by adding them to config file
`.codespellrc`.
For more information about inclusive naming initiative, see
https://inclusivenaming.org/about/
Signed-off-by: Sergei Petrosian <[email protected]>
0 commit comments