Add camelCase rule to eslint
This commit is contained in:
committed by
Lauri Kasanen
parent
670eefbc97
commit
b837bd6f59
@@ -17,12 +17,14 @@ function _inflator(compText, expected) {
|
||||
strm.output = new Uint8Array(chunkSize);
|
||||
}
|
||||
|
||||
/* eslint-disable camelcase */
|
||||
strm.input = compText;
|
||||
strm.avail_in = strm.input.length;
|
||||
strm.next_in = 0;
|
||||
|
||||
strm.next_out = 0;
|
||||
strm.avail_out = expected.length;
|
||||
/* eslint-enable camelcase */
|
||||
|
||||
let ret = inflate(strm, 0);
|
||||
|
||||
|
||||
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user