codespell-project / actions-codespell

MIT License
74 stars 19 forks source link

please add --ignore-regex (available in codespell itself) #42

Open chipitsine opened 2 years ago

chipitsine commented 2 years ago

option is not available in codespell-action :(

peternewman commented 2 years ago

PR welcome; although in the short term you can also use the config file option to pass in multiple unsupported options; personally I've moved more towards this on stuff as it means my config can be unified between the GitHub action and people running it locally.

sappelhoff commented 2 years ago

note: this works by just adding a .codespellrc file to the root of the repo and not passing any with: arguments to the action itself. Note also that the log of the GH action will look as if the config is ignored, but it's not: codespell-project/codespell#2534

jackiekazil commented 1 year ago

was looking for this functionality -- see https://github.com/codespell-project/codespell/issues/2851