This commit is contained in:
David Anson 2025-09-03 23:25:56 -07:00
parent f38368f6cb
commit 697b04834f
6 changed files with 112 additions and 3 deletions

View file

@ -445,7 +445,7 @@ export type Plugin = any[];
/**
* Function to pretty-print lint results.
*/
export type ToStringCallback = (ruleAliases?: boolean) => string;
export type ToStringCallback = () => string;
/**
* Lint results.
*/

View file

@ -1496,7 +1496,6 @@ export function getVersion() {
* Function to pretty-print lint results.
*
* @callback ToStringCallback
* @param {boolean} [ruleAliases] True to use rule aliases.
* @returns {string} Pretty-printed results.
*/