putout
plugin adds ability to find and remove duplecate interface-keys.
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