blob: 35b46adde3f6357283a2ab5a5ae640331de72348 [file] [log] [blame] [edit]
const { defineConfig } = require("eslint/config");
const jsonPlugin = require("eslint-plugin-json");
module.exports = defineConfig([
{
files: ["**/*.json"],
plugins: { json: jsonPlugin },
processor: "json/json",
rules: {
"json/*": ["error", "allowComments"],
},
},
{
ignores: ["**/meson-*/*.json", "subprojects/**/*.json"],
},
]);