putout ignores camelCased paths
Closed this issue · 1 comments
krzysztofpniak commented
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
coderaiser commented