@putout/plugin-convert-generic-to-shorthand
v2.0.1
Published
putout plugin adds ability to convert generic to shorthand
Downloads
24,735
Maintainers
Readme
@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 -D
Rule
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