retext-preset-bpmn-io
Version:
A retext preset for bpmn.io projects
26 lines (23 loc) • 794 B
JavaScript
/**
* @typedef {import('unified').Preset} Preset
*/
import retextSentenceSpacing from 'retext-sentence-spacing';
import retextQuotes from 'retext-quotes';
import retextDiacritics from 'retext-diacritics';
import retextRedundantAcronyms from 'retext-redundant-acronyms';
import retextRepeatedWords from 'retext-repeated-words';
import retextIndefiniteArticle from 'retext-indefinite-article';
import retextContractions from 'retext-contractions';
/** @type {Preset} */
const retextPreset = {
plugins: [
[ retextSentenceSpacing, { preferred: 1 } ],
[ retextQuotes, { preferred: 'straight' } ],
retextDiacritics,
retextRedundantAcronyms,
retextRepeatedWords,
retextIndefiniteArticle,
[ retextContractions, { straight: true } ]
]
};
export default retextPreset;