Hey, i am having a problem displaying the Stylelint errors, i am not sure if its setup issue i created.
If i use the friendly-errors-webpack-plugin enabled it wont show the stylelint errors, only the native ones :

if i disable the plugin it will display both:

how do i disable the other reporter or give stylelint the priority ? i know it might be not the right place to ask but i figured some of u might have run into the same issue.
thats my webpack.config.js:
module.exports = {
.
.
.
module: {
rules: removeEmpty([
{
test: /\.js$/,
use: 'eslint-loader',
enforce: 'pre', // avoid linting before babel transpile
exclude: /node_modules/,
},
{
test: /\.scss$/,
use: [
{
loader: 'style-loader',
},
{
loader: 'css-loader',
options: {
minimize: false,
autoprefixer: false,
sourceMap: true,
importLoaders: 1,
url: false,
},
},
{
loader: 'postcss-loader',
},
{
loader: 'sass-loader',
options: {
sourceMap: true,
},
},
],
exclude: /node_modules/,
},
{
test: /\.js$/,
exclude: /node_modules/,
loader: 'babel-loader',
query: {
plugins: ['syntax-dynamic-import'],
},
},
plugins: {
new FriendlyErrorsWebpackPlugin({
compilationSuccessInfo: {
messages: ['You application is running here http://hajok.dev'],
},
clearConsole: true,
}),
new StyleLintPlugin({
context: path.resolve(__dirname, 'src/scss'),
syntax: 'scss',
}),
.
.
.
thats my postcss.config.js:
module.exports = {
plugins: {
'postcss-import': {},
'postcss-flexbugs-fixes': {},
'postcss-cssnext': {
browsers: ['last 2 versions', '> 5%'],
},
},
};
Hey, i am having a problem displaying the Stylelint errors, i am not sure if its setup issue i created.

If i use the
friendly-errors-webpack-pluginenabled it wont show the stylelint errors, only the native ones :if i disable the plugin it will display both:

how do i disable the other reporter or give stylelint the priority ? i know it might be not the right place to ask but i figured some of u might have run into the same issue.
thats my webpack.config.js:
thats my postcss.config.js: