{ "maxLineLength": 80 } --- class Foo { constructor({name = "Nicholas",sport = "basketball",found = true,lost = false,count = 123}) { this.name = "foo" } static getFoo ( ) { return this; } }; class Bar extends Foo { constructor(someVariableName, someLongVariableName, someLongerVariableName, anotherVariable) { super(); } *values ( ) { return [ ]; } [ baz ] ( b ){ return b; } async fetch (a){ await foo(a) } } --- class Foo { constructor({ name = "Nicholas", sport = "basketball", found = true, lost = false, count = 123 }) { this.name = "foo"; } static getFoo() { return this; } } class Bar extends Foo { constructor( someVariableName, someLongVariableName, someLongerVariableName, anotherVariable ) { super(); } *values() { return []; } [baz](b) { return b; } async fetch(a) { await foo(a); } }