Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 1.08 KB

processors.md

File metadata and controls

28 lines (22 loc) · 1.08 KB

Writing processors

Processors are functions that hook into Stylelint's pipeline, modifying code on its way into Stylelint and modifying results on their way out.

Their use is discouraged in favor of custom syntaxes.

Processor modules are functions that accept an options object and return an object with the following the functions, which hook into the processing of each file:

  • code: A function that accepts two arguments, the file's code and the file's path, and returns a string for Stylelint to lint.
  • result: A function that accepts two arguments, the file's Stylelint result object and the file's path, and either mutates the result object (returning nothing) or returns a new one.
// my-processor.js
module.exports = function (options) {
  return {
    code: function (input, filepath) {
      // ...
      return transformedCode;
    },
    result: function (stylelintResult, filepath) {
      // ...
      return transformedResult;
    }
  };
};

Processor options must be JSON-friendly because users will need to include them in .stylelintrc files.