2.0.1 ⢠Published 4 years ago
@putout/plugin-convert-generic-to-shorthand v2.0.1
@putout/plugin-convert-generic-to-shorthand 
šPutout plugin adds ability to convert generic to shorthand (https://stackoverflow.com/a/36843084/4536327).
Moved to @putout/plugin-typescript.
Install
npm i @putout/plugin-convert-generic-to-shorthand -DRule
Rule convert-generic-to-shorthand is enabled by default for ts and tsx files.
{
"rules": {
"convert-generic-to-shorthand": "on"
}
}ā Incorrect code example
interface A {
x: Array<X>;
y: Array<Y>;
}ā Correct code Example
interface A {
x: X[];
y: Y[];
}License
MIT