Stylelint formatter using babel-code-frame to show the piece of code where the errors and warnings are.
$ npm install stylelint-codeframe-formatter --save-dev
$ stylelint --custom-formatter stylelint-codeframe-formatter file.css
webpack.config.js
module.exports = {
plugins: [
new StylelintPlugin({
formatter: require('stylelint-codeframe-formatter'),
...
})
],
...
};
Gruntfile.js
module.exports = function(grunt) {
grunt.initConfig({
stylelint: {
scss: {
options: {
formatter: require('stylelint-codeframe-formatter')
},
...
}
},
...
});
};
MIT © Benedek Káldi
Heavily based on Adrien Antoine's eslint-codeframe-formatter