3.2.1 ā€¢ Published 2 years ago

@putout/plugin-remove-duplicate-interface-keys v3.2.1

Weekly downloads
1,476
License
MIT
Repository
github
Last release
2 years ago

@putout/plugin-remove-duplicate-interface-keys NPM version

šŸŠPutout plugin adds ability to find and remove duplecate interface-keys. Moved to @putout/plugin-typescript

Install

npm i @putout/plugin-remove-duplicate-interface-keys

Rule

{
    "rules": {
        "remove-duplicate-interface-keys": "on"
    }
}

āŒ Incorrect code example

interface Hello {
    'hello': any
    'hello': string
}

āœ… Correct code Example

interface Hello {
    'hello': string
}

License

MIT

3.2.1

2 years ago

3.2.0

3 years ago

3.1.0

3 years ago

3.0.0

3 years ago

2.0.1

4 years ago

2.0.0

4 years ago