coderaiser/putout

putout ignores camelCased paths

Closed this issue · 1 comments

Given following structure:

-package.json
+camelCaseDir
  -someFile.js

and:
npx putout --fix --rulesdir ./putout ./camelCaseDir/**/*.js

putout ignores someFile.js

it works when I run:
npx putout --fix --rulesdir ./putout ./**/*.js
or
npx putout --fix --rulesdir ./putout ./camelcasedir/**/*.js which is not correct on unix filesystems

I cannot reproduce this:
image

Try to use quotes:

npx putout --fix --rulesdir ./putout './camelCaseDir/**/*.js'