@putout/plugin-remove-useless-mapping-modifiers

1.0.2 • Public • Published

@putout/plugin-remove-useless-mapping-modifiers NPM version

🐊Putout plugin adds ability to remove useless mapping modifiers. Moved to @putout/plugin-typescript

Install

npm i @putout/plugin-remove-useless-mapping-modifiers

Rule

{
    "rules": {
        "remove-useless-mapping-modifiers": "on"
    }
}

Incorrect code example

type SuperType = {
    [Key in keyof Type]+?: Type[Key];
};

Correct code Example

type SuperType = {
    [Key in keyof Type]?: Type[Key];
};

License

MIT

Dependencies (0)

    Dev Dependencies (6)

    Package Sidebar

    Install

    npm i @putout/plugin-remove-useless-mapping-modifiers

    Weekly Downloads

    85

    Version

    1.0.2

    License

    MIT

    Unpacked Size

    4.09 kB

    Total Files

    4

    Last publish

    Collaborators

    • coderaiser