Use this rule to control the number of spaces inside braces ({ and }).
With min-spaces-inside = 0 and max-spaces-inside = 0
the following code snippet would PASS:
object: {key1: 4, key2: 8}
the following code snippet would FAIL:
object: { key1: 4, key2: 8 }
With min-spaces-inside = 1 and max-spaces-inside = 3
the following code snippet would PASS:
object: { key1: 4, key2: 8 }
the following code snippet would PASS:
object: { key1: 4, key2: 8 }
the following code snippet would FAIL:
object: { key1: 4, key2: 8 }
the following code snippet would FAIL:
object: {key1: 4, key2: 8 }
With min-spaces-inside-empty = 0 and max-spaces-inside-empty = 0
the following code snippet would PASS:
object: {}
the following code snippet would FAIL:
object: { }
With min-spaces-inside-empty = 1 and max-spaces-inside-empty = -1
the following code snippet would PASS:
object: { }
the following code snippet would FAIL:
object: {}