We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
console
1 parent 0cbc076 commit 2bbc974Copy full SHA for 2bbc974
src/librustdoc/html/static/.eslintrc.js
@@ -91,5 +91,6 @@ module.exports = {
91
"no-script-url": "error",
92
"no-sequences": "error",
93
"no-div-regex": "error",
94
+ "no-console": "error",
95
}
96
};
src/librustdoc/html/static/js/search.js
@@ -1133,6 +1133,7 @@ class RoaringBitmap {
1133
1134
for (let j = 0; j < size; ++j) {
1135
if (offsets && offsets[j] !== i) {
1136
+ // eslint-disable-next-line no-console
1137
console.log(this.containers);
1138
throw new Error(`corrupt bitmap ${j}: ${i} / ${offsets[j]}`);
1139
0 commit comments