SourceTermAnalysisSystem_vue/node_modules/eslint-plugin-toml/lib/configs/base.js
2026-05-15 10:22:44 +08:00

15 lines
321 B
JavaScript

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