forked from lix-project/lix-website
26 lines
697 B
JavaScript
26 lines
697 B
JavaScript
|
'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', (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,
|
||
|
});
|
||
|
};
|
||
|
});
|