toml/table-bracket-spacing
enforce consistent spacing inside table brackets
- ⚙️ This rule is included in
"plugin:toml/standard"
. - 🔧 The
--fix
option on the command line can automatically fix some of the problems reported by this rule.
📖 Rule Details
This rule enforces consistent spacing inside table brackets.
🔧 Options
yaml
toml/table-bracket-spacing:
- error
- never # or "always"
"never"
... Disallows spaces inside table brackets. It is default."always"
... Requires one or more spaces or newlines inside table brackets
Same as array-bracket-spacing rule option. See here for details.
👫 Related rules
🚀 Version
This rule was introduced in eslint-plugin-toml v0.1.0
🔍 Implementation
Taken with ❤️ from ESLint core