Disallow Object.create() and reflect.#22408
Conversation
Summary of ChangesHello, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request enhances the codebase's type safety and reduces potential regressions by introducing a new linter rule that prohibits the use of Highlights
Changelog
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for GitHub and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
There was a problem hiding this comment.
Code Review
This pull request introduces a new ESLint rule to disallow Object.create() and Reflect in product code, aiming to enhance type safety. The changes include refactoring existing code to eliminate these patterns, replacing them with safer alternatives such as explicit object cloning, derivation methods, and type-safe property access. The modifications are consistent, well-implemented, and successfully improve the overall code quality and maintainability.
|
Size Change: +1.6 kB (+0.01%) Total Size: 26.1 MB
ℹ️ View Unchanged
|
Summary
Adds another linter rule to disallow Object.create() and reflect. These two capabilities are frequently used together to perform ad hoc clones of objects and to implement Proxy in a type unsafe way. This gap in type checking has resulted in a couple of regressions, including this one: #22397
More complete fix for: #22255
Fixes: ##22675