ESLint is throwing meteor/audit-argument-checks “is not checked” when I use SimpleSchema to validate the arguments to the publication. Is there a way to have ESLint recognize that SimpleSchema is indeed checking the values?
Have a question regarding publish Meteor.publish(‘todos.inList’, function(listId, limit)
So, say I call it twice, first time limit is 100 and second time limit is 200. Will server really query 200 items for the second time? If yes, wouldn’t it cause performance issue?