{ "maxLineLength": 80, "trailingCommas": true } --- const colors = ["red" , "green" , "blue"] ; const empty = [ ]; const emptyWithComment = [ // hi ] const emptySameLine = [ ]; const numbers = [ 1, 2 ]; const moreNumbers=[ 3, ]; const evenMoreNumbers = [ 3, 4, 5 ]; const someReallyLongArray = [ "cody", true, "blue", 12345, "fun", 0.5, "whatever"] if (foo) { const someReallyLongArray = [ "dustin", true, "blue", 12345, "fun", 0.5, "whatever"] } --- const colors = ["red", "green", "blue"]; const empty = []; const emptyWithComment = [ // hi ]; const emptySameLine = []; const numbers = [ 1, 2, ]; const moreNumbers = [ 3, ]; const evenMoreNumbers = [ 3, 4, 5, ]; const someReallyLongArray = [ "cody", true, "blue", 12345, "fun", 0.5, "whatever", ]; if (foo) { const someReallyLongArray = [ "dustin", true, "blue", 12345, "fun", 0.5, "whatever", ]; }