@kotify/neutrino-typescript-eslint
v7.0.0
Published
Neutrino middleware for eslint with typescript support
Downloads
1
Readme
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'}),
]
}