Skip to content

Latest commit

 

History

History
18 lines (16 loc) · 248 Bytes

eslint.md

File metadata and controls

18 lines (16 loc) · 248 Bytes
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)