@putout/plugin-convert-generic-to-shorthand

putout plugin adds ability to convert generic to shorthand

Usage no npm install needed!

<script type="module">
  import putoutPluginConvertGenericToShorthand from 'https://cdn.skypack.dev/@putout/plugin-convert-generic-to-shorthand';
</script>

README

@putout/plugin-convert-generic-to-shorthand NPM version

🐊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