eslint-plugin-text
Version:
An incredible ESLint plugin for retext or textlint
25 lines • 457 B
JavaScript
export const base = {
parser: 'eslint-plugin-text',
plugins: ['text', 'utils'],
processor: 'utils/jsonMessage',
};
export const recommended = {
...base,
rules: {
'text/retext': 1,
'text/textlint': 1,
},
};
export const retext = {
...base,
rules: {
'text/retext': 1,
},
};
export const textlint = {
...base,
rules: {
'text/textlint': 1,
},
};
//# sourceMappingURL=configs.js.map