@putout/plugin-remove-useless-mapping-modifiers
🐊Putout plugin adds ability to remove useless mapping modifiers
Last updated 4 years ago by coderaiser .
MIT · Repository · Bugs · Original npm · Tarball · package.json
$ cnpm install @putout/plugin-remove-useless-mapping-modifiers 
SYNC missed versions from official npm registry.

@putout/plugin-remove-useless-mapping-identifiers NPM version Dependency Status

putout plugin adds ability to remove useless mapping modifiers.

Install

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

Rule

{
    "rules": {
        "remove-useless-mapping-identifiers": "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

Current Tags

  • 1.0.2                                ...           latest (4 years ago)

3 Versions

  • 1.0.2                                ...           4 years ago
  • 1.0.1                                ...           5 years ago
  • 1.0.0                                ...           5 years ago
Maintainers (1)
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 1
Dependencies (0)
None
Dev Dependencies (6)
Dependents (1)

Copyright 2013 - present © cnpmjs.org | Home |