4.0.6 • Published 2 years ago

@types/gulp-stylint v4.0.6

Weekly downloads
49
License
MIT
Repository
github
Last release
2 years ago

Installation

npm install --save @types/gulp-stylint

Summary

This package contains type definitions for gulp-stylint (https://github.com/danielhusar/gulp-stylint).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/gulp-stylint.

index.d.ts

// Type definitions for gulp-stylint 4.0
// Project: https://github.com/danielhusar/gulp-stylint
// Definitions by: DefinitelyTyped <https://github.com/DefinitelyTyped>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

/// <reference types="node" />

interface GulpStylint {
    (options?: GulpStylint.Options): NodeJS.ReadWriteStream;
    reporter(options?: GulpStylint): NodeJS.ReadWriteStream;
    reporter(identifier: "fail", options?: { failOnWarning: true }): NodeJS.ReadWriteStream;
}

declare namespace GulpStylint {
    interface Options {
        config?: string | undefined;
        rules?: { [ruleName: string]: any; } | undefined;
        reporter?: any;
    }

    interface ReporterOptions {
        logger?(): void;
    }

    interface FailReporterOptions {
        failOnWarning: true;
    }
}

declare var gulpStylint: GulpStylint;
export = gulpStylint;

Additional Details

  • Last updated: Thu, 23 Dec 2021 23:34:47 GMT
  • Dependencies: @types/node
  • Global values: none

Credits

These definitions were written by DefinitelyTyped.

4.0.5

2 years ago

4.0.4

2 years ago

4.0.6

2 years ago

4.0.3

2 years ago

4.0.2

4 years ago

4.0.1

4 years ago

4.0.0

5 years ago