cheatsheets/_inactive/deprecated/eslint.md

248 B

title category
eslint JavaScript libraries
// "comma-dangle": "always" ("always-multiline", "never")
var foo = {
    bar: "baz",
    qux: "quux",
};
var arr = [1,2,];
// "yoda": "always" ("never")
if ("red" === color)