latchset / jwcrypto

Implements JWK,JWS,JWE specifications using python-cryptography
GNU Lesser General Public License v3.0
438 stars 118 forks source link

Fix typos with codespell #307

Closed cclauss closed 2 years ago

cclauss commented 2 years ago

codespell --ignore-words-list="ect,ser" -w .

simo5 commented 2 years ago

Ah thanks, good catches! Is codespell available in common linux distributions? I am thinking we may want to add it as a check so that we catch these mispellings at PR time in the future.

cclauss commented 2 years ago

codespell is pure Python so python3 -m pip install codespell will work. I install it with pipx install codespell. It also works well in pre-commit.