eslint-plugin-markdownlint
Version:
Eslint plugin for markdownlint
24 lines (20 loc) • 528 B
JavaScript
/**
* @fileoverview Rule MD038
* @see https://github.com/DavidAnson/markdownlint/blob/main/doc/Rules.md#md038
* @author Paweł BB Drozd
*/
;
const ruleChecker = require("../ruleChecker");
const Rule = require("./rule");
module.exports = {
meta: {
type: "layout",
docs: {
description: "spaces inside code span elements",
url: "https://github.com/DavidAnson/markdownlint/blob/main/doc/Rules.md#md038",
},
fixable: "code",
schema: [],
},
create: ruleChecker(Rule.MD038),
};