@putout/plugin-remove-duplicate-interface-keys
v3.2.1
Published
putout plugin adds ability to find and remove duplicate keys from interface
Downloads
24,844
Readme
@putout/plugin-remove-duplicate-interface-keys 
🐊Putout plugin adds ability to find and remove duplecate interface-keys.
Moved to @putout/plugin-typescript
Install
npm i @putout/plugin-remove-duplicate-interface-keysRule
{
"rules": {
"remove-duplicate-interface-keys": "on"
}
}❌ Incorrect code example
interface Hello {
'hello': any
'hello': string
}✅ Correct code Example
interface Hello {
'hello': string
}License
MIT
