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/_**"]
}
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/_**"] }