blob: 2aa8a44d446172df5430681ccdf8572e3a06cb44 [file]
const { defineConfig } = require("eslint/config");
const jsonPlugin = require("@eslint/json").default;
module.exports = defineConfig([
{
files: ["**/*.json"],
plugins: { json: jsonPlugin },
// OpenBMC allows comments in JSON; treat as JSON5.
language: "json/json5",
extends: ["json/recommended"],
},
{
ignores: ["**/meson-*/*.json", "subprojects/**/*.json"],
},
]);