How do you redefine the linter-jscs prefix?

I would like to override a property disallowMultipleVarDeclin 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

How can I override this property disallowMultipleVarDecl?

+4
source share

Source: https://habr.com/ru/post/1612013/


All Articles