jscs-dev / node-jscs

:arrow_heading_up: JavaScript Code Style checker (unmaintained)
https://jscs-dev.github.io
MIT License
4.97k stars 515 forks source link

jscs exlucdeFiles not Work! #2271

Closed Kuznetsov2100 closed 8 years ago

Kuznetsov2100 commented 8 years ago

I have a .jscsrc file on my project root path, I installed the newest JSCS globally, I am using the jscs-formater plugin of sublime text 3, but the JSCS just can't skip the exculdeFiles each time I press ctrl + s key to save file , any other rule works well. Here is my config detail. { "preset":"airbnb", "fileExtensions": [".js", ".jsx"], "fix": true, "requireSemicolons": null, "disallowMultipleSpaces": true, "disallowSemicolons": true, "disallowSpaceBeforeComma": {"allExcept": ["sparseArrays"]}, "excludeFiles": ["dist/**_", "coverage/_**"] }

Kuznetsov2100 commented 8 years ago

Just found that it is the jscs-formatter plugin's bug.