Conversation
mateacademy-ai-mentor
left a comment
There was a problem hiding this comment.
Great job on your submission! 🎉 The code meets all the task requirements and constraints, and the test cases are well-structured. The only minor suggestion is regarding the ESLint configuration: if disabling the 'no-proto' rule was not intentional, you might want to set it to 'warn' or 'error' to avoid using the deprecated __proto__ property. Keep up the excellent work! 😊
✨ Please rate this review in the Platform's notification center. I will be grateful for your feedback! ✨
| 'no-proto': 0, | ||
| strict: 0, | ||
| 'max-len': 0, | ||
| 'no-proto': 0 |
There was a problem hiding this comment.
The 'no-proto' rule is set to 0, which disables it. If this is not intentional, consider setting it to 'warn' or 'error' to enforce the rule and prevent the use of the deprecated 'proto' property.
No description provided.