xref: /openbmc/docs/style/json/eslint.config.js (revision 1699350553e3ff27feb363be56cf08e45b2de659)
1const { defineConfig } = require("eslint/config");
2const jsonPlugin = require("@eslint/json").default;
3
4module.exports = defineConfig([
5    {
6        files: ["**/*.json"],
7        plugins: { json: jsonPlugin },
8        // OpenBMC allows comments in JSON; treat as JSON5.
9        language: "json/json5",
10        extends: ["json/recommended"],
11    },
12    {
13        ignores: ["**/meson-*/*.json", "subprojects/**/*.json"],
14    },
15]);
16