Disable ESLint no-bitwise rule

This commit is contained in:
Ulrik de Muelenaere 2017-10-30 22:24:59 +02:00
parent 3adc2e0f83
commit 95b41b311f
2 changed files with 1 additions and 1 deletions

View File

@ -45,3 +45,4 @@ rules:
no-multi-spaces: ["error", {"ignoreEOLComments": true}]
function-paren-newline: "off"
multiline-comment-style: "off"
no-bitwise: "off"

View File

@ -100,7 +100,6 @@ window._qutebrowser.stylesheet = (function() {
return;
}
var iter = document.createNodeIterator(document,
// eslint-disable-next-line no-bitwise
NodeFilter.SHOW_PROCESSING_INSTRUCTION | NodeFilter.SHOW_ELEMENT);
var node;
while ((node = iter.nextNode())) {