From 36d2fb8723ddd8f03b102f503b0a9241302939f2 Mon Sep 17 00:00:00 2001 From: coderaiser Date: Fri, 17 Feb 2017 16:33:47 +0200 Subject: [PATCH] feature(jshint) ignore reserved words --- .jshintrc | 3 ++- client/operation.js | 3 --- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.jshintrc b/.jshintrc index 15d6c6d9..8ab285f3 100644 --- a/.jshintrc +++ b/.jshintrc @@ -16,5 +16,6 @@ "evil" : true, "expr" : true, "quotmark": "single", - "validthis": true + "validthis": true, + "-W024": true } diff --git a/client/operation.js b/client/operation.js index 0f061b10..637621c4 100644 --- a/client/operation.js +++ b/client/operation.js @@ -7,9 +7,6 @@ /* global salam */ /* global omnes */ -// ignore reserved words -// jshint -W024 - 'use strict'; CloudCmd.Operation = OperationProto;