Skip to content

toml/no-space-dots

disallow spacing around infix operators

  • ⚙️ 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 disallows whitespace around the dot.

# eslint toml/no-space-dots: 'error' # ✓ GOOD [good.key] good.key = "foo" # ✗ BAD [bad . key] bad . key = "bar"
Now loading...

🔧 Options

Nothing.

📚 Further reading

🚀 Version

This rule was introduced in eslint-plugin-toml v0.1.0

🔍 Implementation