Code Monkey home page Code Monkey logo

Comments (4)

vvebvvizard avatar vvebvvizard commented on June 6, 2024 1

Thanks, it helped me a lot. I was able to do what I wanted :)

Thanks for your plugin!

from gulp-stylelint.

olegskl avatar olegskl commented on June 6, 2024

Hello,

  1. You can print a custom summary by creating a custom formatter. It takes stylelint results object and should return a string. gulp-stylelint will then write it to console or to a file (or both), depending on the options you provide.
  2. I'm not sure if you can make it work with gulp-notify as gulp-stylelint does not currently pipe stylelint results down the gulp stream.

from gulp-stylelint.

vvebvvizard avatar vvebvvizard commented on June 6, 2024

Thanks for your answer! Indeed I think it's my solution.

But how can I get the array of stylelint result objects to pass to my custom formatter?
Here it's named input stylelint/stylelint#659 but it doesn't seem the same in gulp-stylelint.

from gulp-stylelint.

olegskl avatar olegskl commented on June 6, 2024

You can get some inspiration from the checkstyle formatter.

Below is an example of a custom formatter that returns the beautified JSON of stylelint result objects. Here gulp-stylelint will output the result to console.

gulp
  .src('src/**/*.css')
  .pipe(gulpStylelint({
    reporters: [{
      formatter: function (stylelintResults) {
        return JSON.stringify(stylelintResults, null, '  ');
      },
      console: true
    }]
 }));

from gulp-stylelint.

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.