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,
}
trailingComma
Control whether trailing comma should be inserted or not.
Default option is true
.
false
- [
a
]
- {
a: b
}
true
- [
a,
]
- {
a: b,
}