I would like to override a property disallowMultipleVarDecl
in linter-jscs . I tried to do the following in .jscsrc
:
{
"preset": "airbnb",
"esnext": true,
"requireTrailingComma": null,
"disallowMultipleVarDecl": false
}
I quit (not x-ed out) Atom and reopened it several times and I still get the error message:
![enter image description here](https://fooobar.com//img/cad14a2305e11a50a2698d3f421aa34b.png)
How can I override this property disallowMultipleVarDecl
?
source
share