]> git.proxmox.com Git - mirror_novnc.git/blobdiff - tests/test.rfb.js
Add camelCase rule to eslint
[mirror_novnc.git] / tests / test.rfb.js
index d19590538aee1d2d056d91fc73fa7455035944d0..0481df15c3cfdc9be54e0043667e63a5bea36213 100644 (file)
@@ -70,11 +70,13 @@ function deflateWithSize(data) {
     strm.output = new Uint8Array(chunkSize);
     deflateInit(strm, 5);
 
+    /* eslint-disable camelcase */
     strm.input = unCompData;
     strm.avail_in = strm.input.length;
     strm.next_in = 0;
     strm.next_out = 0;
     strm.avail_out = chunkSize;
+    /* eslint-enable camelcase */
 
     deflate(strm, 3);