mirror of
https://github.com/onkelbeh/cheatsheets.git
synced 2025-06-15 14:47:53 +02:00
248 B
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)