trailingComma

Control whether trailing comma should be inserted or not.

Default option is true.

Example for false

- [
    a
  ]
- {
    a: b
  }

Example for true

- [
    a,
  ]
- {
    a: b,
  }