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
There are multiple 'for-in's that trigger eslint errors for the built version of the library:
119:4 error The body of a for-in should be wrapped in an if statement to filter unwanted properties from the prototype guard-for-in
162:4 error The body of a for-in should be wrapped in an if statement to filter unwanted properties from the prototype guard-for-in
replacing Object.keys(def).forEach(()=>{}) is going to iterate only on the actual properties on the 'def' object.
There are multiple 'for-in's that trigger eslint errors for the built version of the library:
119:4 error The body of a for-in should be wrapped in an if statement to filter unwanted properties from the prototype guard-for-in
162:4 error The body of a for-in should be wrapped in an if statement to filter unwanted properties from the prototype guard-for-in
replacing
Object.keys(def).forEach(()=>{})
is going to iterate only on the actual properties on the 'def' object.ObjectModel/src/object-model.js
Line 79 in e7f7a15
I have tried setting my eslint config simliar to the author's, but I still get the same errors
The text was updated successfully, but these errors were encountered: