eslint-parser-plain
v0.1.0
Published
Parse various types of files with ESLint.
Downloads
191,596
Readme
eslint-parser-plain
Allow you to parse various types of files with ESLint.
📦 Installation
$ npm install eslint-parser-plain -D
$ yarn add eslint-parser-plain -D
$ pnpm add eslint-parser-plain -D
🚀 Usage
In your eslint config file:
module.exports = {
overrides: [
{
files: ["*.md"],
parser: "eslint-parser-plain",
rules: {
"prettier/prettier": ["error", { parser: "markdown" }],
},
},
],
};
That's it!