{ "maxLineLength": 80, "maxEmptyLines": 2, "trailingCommas": true } --- module.exports = { colors :[ "red" ,"green" ,"blue" ], name :'esfmt', doSomething({ name= "Nicholas", sport= "basketball", found=true, lost=false, count=123}){ // some comment return 'I said, "hi!"' }, [ again ] ( ) { return "yo" }, } --- module.exports = { colors: ["red", "green", "blue"], name: "esfmt", doSomething({ name = "Nicholas", sport = "basketball", found = true, lost = false, count = 123, }) { // some comment return "I said, \"hi!\""; }, [again]() { return "yo"; }, };