Merge pull request #89 from twbs/button-type-reset

Don't complain about button `type="reset"`
This commit is contained in:
Chris Rebert 2014-09-25 08:18:03 -07:00
Родитель be4d26111a d04bce10c8
Коммит fe8ad6464d
2 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -290,7 +290,7 @@ var cheerio = require('cheerio');
}
};
exports.lintBtnType = function ($) {
var badBtnType = $('button:not([type="submit"], [type="button"])');
var badBtnType = $('button:not([type="submit"], [type="reset"], [type="button"])');
if (badBtnType.length) {
return "Always set a `type` on `<button>`s.";
}

1
test/fixtures/buttons/with-type.html поставляемый
Просмотреть файл

@ -19,6 +19,7 @@
<body>
<button type="submit">Submit</button>
<button type="reset">Reset</button>
<button type="button">Button</button>
<div id="qunit"></div>