如何让 JSLint 在我的模型定义中停止抱怨 Ember.js “.property()”?
例如,当给定时:
isBlah: function() {
"use strict";
...
}.property("foo", "bar").cacheable()
JSLint 抱怨:
Unexpected '.'.
与 .property() 调用一致。每次出现“.property()”都会发生这种情况,这使得 JSLint 输出充满了“噪音”并且没有完全有用......