eslint bump + CS tweaks

This commit is contained in:
Vitaly Puzrin 2018-11-29 20:13:39 +03:00
parent 73d167872f
commit f1872b3459
4 changed files with 5 additions and 3 deletions

View file

@ -30,7 +30,7 @@ rules:
func-style: [ 2, declaration ]
guard-for-in: 2
handle-callback-err: 2
indent: [ 2, 2, { VariableDeclarator: { var: 2, let: 2, const: 3 }, SwitchCase: 1 } ]
indent: [ 2, 2, { VariableDeclarator: { var: 2, let: 2, const: 3 }, SwitchCase: 1, ignoreComments: true, MemberExpression: off, ignoredNodes: ["ConditionalExpression"] } ]
# key-spacing: [ 2, { "align": "value" } ]
keyword-spacing: 2
linebreak-style: 2

View file

@ -1454,7 +1454,7 @@ function deflate(strm, flush) {
(!s.gzhead.extra ? 0 : 4) +
(!s.gzhead.name ? 0 : 8) +
(!s.gzhead.comment ? 0 : 16)
);
);
put_byte(s, s.gzhead.time & 0xff);
put_byte(s, (s.gzhead.time >> 8) & 0xff);
put_byte(s, (s.gzhead.time >> 16) & 0xff);

View file

@ -19,6 +19,8 @@
// misrepresented as being the original software.
// 3. This notice may not be removed or altered from any source distribution.
/* eslint-disable space-unary-ops */
var utils = require('../utils/common');
/* Public constants ==========================================================*/

View file

@ -32,7 +32,7 @@
"benchmark": "^2.1.4",
"bluebird": "^3.5.0",
"browserify": "^14.4.0",
"eslint": "^3.12.2",
"eslint": "^5.9.0",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"multiparty": "^4.1.3",