arui-presets-lint
Version:
Config files for arui-apps
16 lines (15 loc) • 565 B
JavaScript
import {} from '@typescript-eslint/utils';
import { MESSAGE_IDS, SUGGESTS_DESCRIPTION } from '../constants/index.js';
import { createAboveCommentFix, createSuggestionFix } from './fixers.js';
export function buildSuggestions(comment) {
return [
{
messageId: MESSAGE_IDS.suggestDebug,
fix: createSuggestionFix(comment, SUGGESTS_DESCRIPTION.DEBUG),
},
{
messageId: MESSAGE_IDS.suggestAboveComment,
fix: createAboveCommentFix(comment, SUGGESTS_DESCRIPTION.ABOVE_COMMENT),
},
];
}