7.0.0 • Published 1 year ago

@kotify/neutrino-typescript-eslint v7.0.0

Weekly downloads
21
License
MIT
Repository
github
Last release
1 year ago

Neutrino middleware to support eslint in typescript project

Adds typescript support for eslint 6.x and typescript 3.x.

Usage

Middleware accepts options eslint options object that will be merged with base options.

Example:

const typescriptEslint = require('neutrino-typescript-eslint');

module.exports = {
    use: [
        react(),
        eslint(),
        typescriptEslint({}, {react: true, reactVersion: '16.13'}),
    ]
}