26 lines
702 B
JavaScript
Raw Normal View History

2020-05-19 11:43:42 +03:00
'use strict';
const _ = require('lodash');
const createStylelint = require('./createStylelint');
const path = require('path');
const postcss = require('postcss');
//'block-no-empty': bool || Array
module.exports = postcss.plugin('stylelint', function(options = {}) {
const tailoredOptions = options.rules ? { config: options } : options;
const stylelint = createStylelint(tailoredOptions);
return (root, result) => {
let filePath = options.from || _.get(root, 'source.input.file');
if (filePath !== undefined && !path.isAbsolute(filePath)) {
filePath = path.join(process.cwd(), filePath);
}
return stylelint._lintSource({
filePath,
existingPostcssResult: result,
});
};
});