diff --git a/src/.jshintrc b/src/.jshintrc index 250c8cacdfe..c6f0e72cf21 100644 --- a/src/.jshintrc +++ b/src/.jshintrc @@ -14,6 +14,7 @@ "newcap": false, "noempty": true, "nonstandard": true, + "maxlen": 80, "onecase": true, "regexdash": true, "sub": false, diff --git a/src/utils/isTextInputElement.js b/src/utils/isTextInputElement.js index d7e5d5a27ff..99fa0a60e1d 100644 --- a/src/utils/isTextInputElement.js +++ b/src/utils/isTextInputElement.js @@ -19,7 +19,8 @@ "use strict"; /** - * @see http://www.whatwg.org/specs/web-apps/current-work/multipage/the-input-element.html#input-type-attr-summary + * @see http://www.whatwg.org/specs/web-apps/current-work/multipage/ ... + * the-input-element.html#input-type-attr-summary */ var supportedInputTypes = { 'color': true,