persona-community-5/.pnpm-store/v3/files/64/cf1e0d2f81d206911397dcb229b678fa4e26d570141d1725c3f9bbde07aa7eba8e54318dd4a51dda0bef1dce686c68779189cb296bdee1bd5a881f815ce520
rdev-worker a1d0d1bf1c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: /implement-feature community-ui --requirements 'Build the React commu...
2026-02-24 08:22:30 +00:00

14 lines
410 B
Plaintext

"use strict";
const { stringifyValueForError } = require("./shared");
module.exports = function({ ruleId, value }) {
return `
Configuration for rule "${ruleId}" is invalid. Expected severity of "off", 0, "warn", 1, "error", or 2.
You passed '${stringifyValueForError(value, 4)}'.
See https://eslint.org/docs/latest/use/configure/rules#using-configuration-files for configuring rules.
`.trimStart();
};