You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
would it be possible to add export detection capabilities ?
context:
Currently we are using https://github.com/gund/eslint-plugin-deprecation which is terribly slow. etc plugin provides much better performance, but in order to be able to migrate we would need to add this functionality.
Current Behaviour
// src/foo.ts
// @deprecated use world insteadexportconsthello='world'exportconstworld='this one'
// src/index.ts
// 🚨 No error
export {hello} from './foo'
// ✅ No error
export {world} from './foo'
New Behaviour
// src/foo.ts
// @deprecated use world insteadexportconsthello='world'exportconstworld='this one'
// src/index.ts
// ✅ etc/no-deprecated Errors
export {hello} from './foo'
// ✅ No error
export {world} from './foo'
The text was updated successfully, but these errors were encountered:
would it be possible to add export detection capabilities ?
context:
Currently we are using https://github.com/gund/eslint-plugin-deprecation which is terribly slow. etc plugin provides much better performance, but in order to be able to migrate we would need to add this functionality.
Current Behaviour
// src/foo.ts
// src/index.ts
New Behaviour
// src/foo.ts
// src/index.ts
The text was updated successfully, but these errors were encountered: