我有以下代码:
/*jslint browser: true*/
/*global $, jQuery*/
if (json.RowKey !== json.NewRowKey) {
$("#row_" + row).attr('data-rk', json.RowKey);
updateGridMeta(entity, json.PartitionKey, json.NewRowKey, row, obj.table);
updateGridTitles();
}
lint 报告在定义之前使用了 updateGridTitles。有没有办法在我的脚本顶部添加一些东西来告诉它不要报告这个?