Remove jshint - move everything over to eslint

Also removed all hints of previous linters
This commit is contained in:
Scott Nonnenberg 2018-07-06 17:48:14 -07:00
commit 43a44793c5
71 changed files with 1837 additions and 2030 deletions

View file

@ -1,13 +1,17 @@
/* global Whisper */
// eslint-disable-next-line func-names
(function() {
'use strict';
window.Whisper = window.Whisper || {};
Whisper.HintView = Whisper.View.extend({
templateName: 'hint',
initialize: function(options) {
initialize(options) {
this.content = options.content;
},
render_attributes: function() {
render_attributes() {
return { content: this.content };
},
});