UNPKG

eslint-plugin-toml

Version:

This ESLint plugin provides linting rules for TOML.

15 lines (14 loc) 321 B
"use strict"; module.exports = { plugins: ["toml"], overrides: [ { files: ["*.toml"], parser: require.resolve("toml-eslint-parser"), rules: { "no-irregular-whitespace": "off", "spaced-comment": "off", }, }, ], };