There is a .jscsrc
file in the root directory of the project and it has settings set by other people and I want to add my own options but only on my own vscode. Like excluding gulpfile.js
.
I currently have the snippet below in my settings.
"jscs.configuration": {
"excludeFiles": ["gulpfile.js"]
}
But it still shows indention errors from gulpfile.js
. And I do not want to touch settings that are shared.