0.1.4 • Published 2 years ago
posthtml-bem-linter v0.1.4
posthtml-bem-linter
Pure function and posthtml plugin for linting a bem html. Fork of gulp-html-bemlinter.
Additions:
- Support
modifier
option (default value is--
). - No flood on success.
Usage
First, install posthtml-bem-linter
as a development dependency:
npm i --DE posthtml-bem-linter
Then, add it to your posthtml.config.js
:
const { getPosthtmlBemLinter } = require('posthtml-bem-linter');
module.exports = {
plugins: [
getPosthtmlBemLinter({
getSourceName: (filename) => filename,
log: console,
modifier: '--'
})
]
};
(There are default values of optional params getSourceName
, log
and modifier
in this example.)
Or use function lintBem
in pure Node:
const { lintBem } = require('posthtml-bem-linter');
// ...
lintBem({
name,
content,
log: console,
modifier: '--'
});
(There are default values of optional params log
and modifier
in this example.)