Coder Social home page Coder Social logo

Comments (8)

iceekey avatar iceekey commented on June 23, 2024 3

I use this stub for development to show stylelint errors:

webpack.transformer.js

const _ = require("lodash");

function isWebpackError (e) {
  return _.isEmpty(e.originalStack) && _.isNil(e.file) && _.has(e, "webpackError");
}

function transform(error) {
  if (isWebpackError(error)) {
    return Object.assign({}, error, {
      name: "Webpack error",
      type: "webpack-error"
    });
  }

  return error;
}

module.exports = transform;

webpack.formatter.js

function concat(...args) {
  args = Array.from(args).filter(e => e !== null);
  const baseArray = Array.isArray(args[0]) ? args[0] : [args[0]];
  return Array.prototype.concat.apply(baseArray, args.slice(1));
}

function displayError(error) {
  return [error.webpackError, ""];
}

function format(errors) {
  const lintErrors = errors.filter(e => e.type === "webpack-error");
  if (lintErrors.length > 0) {
    const flatten = (accum, curr) => accum.concat(curr);
    return concat(
      lintErrors
        .map(error => displayError(error))
        .reduce(flatten, [])
    );
  }

  return [];
}

module.exports = format;

webpack.config.js

// ...
const webpackErrorTransformer = require("./transformers/webpack.transformer");
const webpackErrorFormatter = require("./formatters/webpack.formatter");
// ...
 plugins: [
    new FriendlyErrorsWebpackPlugin({
      additionalTransformers: [webpackErrorTransformer],
      additionalFormatters: [webpackErrorFormatter]
    }),
// ...

image

I didn't find any reasons to dedicate this solution to stylelint, beacause this way any other webpack error could be shown. Basically, there's no stack at all and webpackError frield contains error message.

from friendly-errors-webpack-plugin.

iceekey avatar iceekey commented on June 23, 2024 1

@geowarin Thank you. I'll make a pull request in a spare time.

from friendly-errors-webpack-plugin.

geowarin avatar geowarin commented on June 23, 2024

Hello!
Thanks for the report.

We currently support 3 types of errors:

  • Babel syntax errors (priority = 1000)
  • Modules not found (priority = 900)
  • Eslint errors (priority = 0)

The other errors are given 0 priority and all the errors with the same priority should be displayed at the same time.
What output did you expect and how can we fix it ?

from friendly-errors-webpack-plugin.

hendrikeng avatar hendrikeng commented on June 23, 2024

@geowarin Thanks for your quick reply.

It would be great to support Stylelint Syntax errors as they provide more detailed information
and a majority of people are using it. Would that be possible? Not sure how i could help though :-)

Stylelint
image

from friendly-errors-webpack-plugin.

geowarin avatar geowarin commented on June 23, 2024

Stylelint could be a fine addition!
If you feel like contributing, take a look at the eslint transformer (which identifies an eslint error) and the eslint formatter (which displays it on the screen).

You could also contribute a test!

from friendly-errors-webpack-plugin.

kaelvergara avatar kaelvergara commented on June 23, 2024

+1 to @iceekey solution, this fixes my issue where stylelint plugin is not showing error logs for webpack dev server.

from friendly-errors-webpack-plugin.

geowarin avatar geowarin commented on June 23, 2024

@iceekey Nice thank you!
It looks like the default formatter should handle stylint!

Could you make a pull request including your changes?

from friendly-errors-webpack-plugin.

fancyboynet avatar fancyboynet commented on June 23, 2024

So does it support stylelint error now?

from friendly-errors-webpack-plugin.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.