This commit is contained in:
Chris Rebert 2014-07-11 04:28:16 -07:00
Родитель 82263e83eb
Коммит 9c587e3cca
2 изменённых файлов: 2 добавлений и 2 удалений

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

@ -1,6 +1,6 @@
{
"name": "bootlint",
"version": "0.0.0",
"version": "0.0.1",
"description": "HTML linter for Bootstrap projects",
"keywords": [
"bootstrap",

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

@ -16,7 +16,7 @@
});
function isDoctype(node) {
return node.type == 'directive' && node.name == '!doctype';
return node.type === 'directive' && node.name === '!doctype';
}
exports.lintDoctype = function ($) {