I am using the nicEdit editor, which has a function object nicEditor.
JSLint puts a warning on it:
The constructor name 'nicEditor' must begin with a capital letter.
It ignores the parameter /*jslint newcap:false */that I set right in front of the problem line
var nic_editor = new nicEditor({
buttonList : ['bold', 'italic', 'underline', 'strikethrough', 'emoticonToolbar'],
iconsPath : '/assets/nicEditorIcons.gif'
}),
How can I suppress this warning, but only for this line?
source
share