1
0
mirror of https://github.com/onkelbeh/cheatsheets.git synced 2025-06-15 14:47:53 +02:00
2017-08-29 23:57:21 +08:00

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)