diff --git a/src/bootlint.js b/src/bootlint.js index 2d984f1a..80e6c8eb 100644 --- a/src/bootlint.js +++ b/src/bootlint.js @@ -318,7 +318,6 @@ var LocationIndex = _location.LocationIndex; allLinters[id] = linterWrapper; } - /* addLinter('W001', function lintMetaCharsetUtf8($, reporter) { var meta = $('head>meta[charset]'); var charset = meta.attr('charset'); @@ -336,7 +335,6 @@ var LocationIndex = _location.LocationIndex; reporter('charset `` tag is specifying a legacy, non-UTF-8 charset', meta); } }); - */ /* addLinter('W003', function lintViewport($, reporter) { var meta = $('head>meta[name="viewport"][content]'); diff --git a/test/bootlint_test.js b/test/bootlint_test.js index bbca8134..6d89ef7b 100644 --- a/test/bootlint_test.js +++ b/test/bootlint_test.js @@ -56,7 +56,6 @@ exports.bootlint = { 'should not complain when the legacy-compatibility HTML5 doctype is used.'); test.done(); }, - /* 'UTF-8 charset meta tag': function (test) { test.expect(4); test.deepEqual(lintHtml(utf8Fixture('charset/utf8.html')), @@ -73,7 +72,6 @@ exports.bootlint = { 'should complain when tag specifies non-UTF-8 charset.'); test.done(); }, - */ /* 'rows outside containers': function (test) { test.expect(6); diff --git a/test/_old_fixtures/charset/missing.html b/test/fixtures/charset/missing.html similarity index 100% rename from test/_old_fixtures/charset/missing.html rename to test/fixtures/charset/missing.html diff --git a/test/_old_fixtures/charset/not-utf8.html b/test/fixtures/charset/not-utf8.html similarity index 100% rename from test/_old_fixtures/charset/not-utf8.html rename to test/fixtures/charset/not-utf8.html diff --git a/test/_old_fixtures/charset/utf8-meta.html b/test/fixtures/charset/utf8-meta.html similarity index 100% rename from test/_old_fixtures/charset/utf8-meta.html rename to test/fixtures/charset/utf8-meta.html diff --git a/test/_old_fixtures/charset/utf8.html b/test/fixtures/charset/utf8.html similarity index 100% rename from test/_old_fixtures/charset/utf8.html rename to test/fixtures/charset/utf8.html