@greendou/rollup-plugin-tslint

0.1.26 • Public • Published

rollup-plugin-tslint

Build Coverage JavaScript Style Guide Downloads Version Dependency DevDependency

Rollup plugin to verify entry point and all imported files with TSLint.

Install

npm i rollup-plugin-tslint -D

Usage

import { rollup } from 'rollup';
import tslint from 'rollup-plugin-tslint';

rollup({
    entry: 'main.js',
    plugins: [
        tslint({ /* your options */ })
    ]
});

Options

See more options here tslint-config.

throwError

Type: boolean
Default: false

If true, will throw an error if any warnings or errors were found.

include

Type: array or string
Default: []

A single file, or array of files, to include when linting.

exclude

Type: array or string
Default: node_modules/**

A single file, or array of files, to exclude when linting.

formatter

Type: function or string
Default: stylish

Custom error formatter or the name of a built-in formatter.

tsConfigSearchPath

License

MIT © Minocoko

Acknowledges

Initially this plugin were inspired by rollup-plugin-eslint, thanks a lot.

Package Sidebar

Install

npm i @greendou/rollup-plugin-tslint

Weekly Downloads

1

Version

0.1.26

License

MIT

Last publish

Collaborators

  • greendou