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

16 lines
370 B
JavaScript

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