reviewdog / action-misspell

Run misspell with reviewdog
https://github.com/marketplace?type=actions&query=reviewdog
MIT License
88 stars 27 forks source link

How do you exclude multiple files and folders? #29

Closed mikebronner closed 3 years ago

mikebronner commented 3 years ago

I've tried the following, but it does not seem to work:

exclude: ./public/*,./package.json,./package-lock.json,./composer.json,./composer.lock

Neither does the following (spaces instead of commas):

exclude: ./public/* ./package.json ./package-lock.json ./composer.json ./composer.lock

If I only exclude as follows, it works for that folder:

exclude: ./public/*

Any suggestions as to what is wrong? Thank you!

shogo82148 commented 3 years ago

fixed by https://github.com/reviewdog/action-misspell/pull/27