toml/padding-line-between-tables
require or disallow padding lines between tables
- ⚙️ 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 requires or disallows blank lines between the tables.
# eslint toml/padding-line-between-tables: 'error'
# ✓ GOOD
[good.a]
key = 'value'
[good.b]
key = 'value'
[good.c]
key = 'value'
# ✗ BAD
[bad.a]
key = 'value'
[bad.b]
key = 'value'
[[bad.c]]
key = 'value'
🔧 Options
Nothing.
👫 Related rules
🚀 Version
This rule was introduced in eslint-plugin-toml v0.1.0