From 95daa65d7d48678c7c3cdb22408156e1a557d249 Mon Sep 17 00:00:00 2001 From: Thomas Grainger Date: Tue, 29 Nov 2016 02:08:20 +0000 Subject: [PATCH] remove globals ignore --- src/js/core/Utils.js | 2 +- src/js/operations/BitwiseOp.js | 2 +- src/js/operations/ByteRepr.js | 2 +- src/js/operations/CharEnc.js | 2 +- src/js/operations/Cipher.js | 2 +- src/js/operations/Code.js | 2 +- src/js/operations/Compress.js | 2 +- src/js/operations/DateTime.js | 2 +- src/js/operations/HTTP.js | 2 +- src/js/operations/Hash.js | 2 +- src/js/operations/Hexdump.js | 2 +- src/js/operations/IP.js | 2 +- src/js/operations/JS.js | 2 +- src/js/operations/PublicKey.js | 2 +- src/js/operations/Punycode.js | 2 +- src/js/operations/StrUtils.js | 2 +- src/js/operations/URL.js | 2 +- src/js/views/html/HTMLApp.js | 2 +- src/js/views/html/OperationsWaiter.js | 2 +- src/js/views/html/RecipeWaiter.js | 2 +- src/js/views/html/main.js | 2 +- 21 files changed, 21 insertions(+), 21 deletions(-) diff --git a/src/js/core/Utils.js b/src/js/core/Utils.js index 0f3c6121..744c596b 100755 --- a/src/js/core/Utils.js +++ b/src/js/core/Utils.js @@ -1,6 +1,6 @@ import $ from 'jquery'; -/* globals CryptoJS, moment */ + /** * Utility functions for use in operations, the core framework and the stage. diff --git a/src/js/operations/BitwiseOp.js b/src/js/operations/BitwiseOp.js index 3b08287c..4cdf6b34 100755 --- a/src/js/operations/BitwiseOp.js +++ b/src/js/operations/BitwiseOp.js @@ -1,6 +1,6 @@ import Utils from '../core/Utils'; -/* globals CryptoJS */ + /** * Bitwise operations. diff --git a/src/js/operations/ByteRepr.js b/src/js/operations/ByteRepr.js index e84c20ee..ffe12776 100755 --- a/src/js/operations/ByteRepr.js +++ b/src/js/operations/ByteRepr.js @@ -1,6 +1,6 @@ import Utils from '../core/Utils'; -/* globals app */ + /** * Byte representation operations. diff --git a/src/js/operations/CharEnc.js b/src/js/operations/CharEnc.js index a419986b..f6ad6e21 100755 --- a/src/js/operations/CharEnc.js +++ b/src/js/operations/CharEnc.js @@ -1,6 +1,6 @@ import Utils from '../core/Utils'; -/* globals CryptoJS */ + /** * Character encoding operations. diff --git a/src/js/operations/Cipher.js b/src/js/operations/Cipher.js index 693e2012..6f0d12d9 100755 --- a/src/js/operations/Cipher.js +++ b/src/js/operations/Cipher.js @@ -1,5 +1,5 @@ import Utils from '../core/Utils'; -/* globals CryptoJS, blowfish */ + /** * Cipher operations. diff --git a/src/js/operations/Code.js b/src/js/operations/Code.js index 78503859..940eca49 100755 --- a/src/js/operations/Code.js +++ b/src/js/operations/Code.js @@ -1,6 +1,6 @@ import Utils from '../core/Utils'; -/* globals prettyPrintOne, vkbeautify */ + /** * Code operations. diff --git a/src/js/operations/Compress.js b/src/js/operations/Compress.js index f5a328ee..5f94f9d9 100755 --- a/src/js/operations/Compress.js +++ b/src/js/operations/Compress.js @@ -1,7 +1,7 @@ import Utils from '../core/Utils'; import Uint8Array from 'core-js/modules/es6.typed.uint8-array'; -/* globals Zlib, bzip2 */ + /** * Compression operations. diff --git a/src/js/operations/DateTime.js b/src/js/operations/DateTime.js index c5a859ec..89367d11 100755 --- a/src/js/operations/DateTime.js +++ b/src/js/operations/DateTime.js @@ -1,4 +1,4 @@ -/* globals moment */ + /** * Date and time operations. diff --git a/src/js/operations/HTTP.js b/src/js/operations/HTTP.js index d3cc0073..54bc9939 100755 --- a/src/js/operations/HTTP.js +++ b/src/js/operations/HTTP.js @@ -1,4 +1,4 @@ -/* globals UAS_parser */ + /** * HTTP operations. diff --git a/src/js/operations/Hash.js b/src/js/operations/Hash.js index 23719a32..bfe9837b 100755 --- a/src/js/operations/Hash.js +++ b/src/js/operations/Hash.js @@ -1,6 +1,6 @@ import Utils from '../core/Utils'; -/* globals CryptoJS, Checksum */ + /** * Hashing operations. diff --git a/src/js/operations/Hexdump.js b/src/js/operations/Hexdump.js index dc4adc3a..dde4f964 100755 --- a/src/js/operations/Hexdump.js +++ b/src/js/operations/Hexdump.js @@ -1,6 +1,6 @@ import Utils from '../core/Utils'; -/* globals app */ + /** * Hexdump operations. diff --git a/src/js/operations/IP.js b/src/js/operations/IP.js index a075a632..a8b79201 100755 --- a/src/js/operations/IP.js +++ b/src/js/operations/IP.js @@ -1,6 +1,6 @@ import Utils from '../core/Utils'; -/* globals BigInteger */ + /** * Internet Protocol address operations. diff --git a/src/js/operations/JS.js b/src/js/operations/JS.js index 1ffe102d..e626e793 100755 --- a/src/js/operations/JS.js +++ b/src/js/operations/JS.js @@ -1,4 +1,4 @@ -/* globals esprima, escodegen, esmangle */ + /** * JavaScript operations. diff --git a/src/js/operations/PublicKey.js b/src/js/operations/PublicKey.js index a7800ae9..1ca5a97a 100755 --- a/src/js/operations/PublicKey.js +++ b/src/js/operations/PublicKey.js @@ -1,6 +1,6 @@ import Utils from '../core/Utils'; -/* globals X509, KJUR, ASN1HEX, KEYUTIL, BigInteger */ + /** * Public Key operations. diff --git a/src/js/operations/Punycode.js b/src/js/operations/Punycode.js index 45433a09..31390afa 100755 --- a/src/js/operations/Punycode.js +++ b/src/js/operations/Punycode.js @@ -1,4 +1,4 @@ -/* globals punycode */ + /** * Punycode operations. diff --git a/src/js/operations/StrUtils.js b/src/js/operations/StrUtils.js index 9d2a9103..03f79d56 100755 --- a/src/js/operations/StrUtils.js +++ b/src/js/operations/StrUtils.js @@ -1,6 +1,6 @@ import Utils from '../core/Utils'; -/* globals JsDiff */ + /** * String utility operations. diff --git a/src/js/operations/URL.js b/src/js/operations/URL.js index d9295290..84af7652 100755 --- a/src/js/operations/URL.js +++ b/src/js/operations/URL.js @@ -1,5 +1,5 @@ import Utils from '../core/Utils'; -/* globals unescape */ + /** * URL operations. diff --git a/src/js/views/html/HTMLApp.js b/src/js/views/html/HTMLApp.js index c1ffdb7e..09eb0162 100755 --- a/src/js/views/html/HTMLApp.js +++ b/src/js/views/html/HTMLApp.js @@ -7,7 +7,7 @@ import HTMLCategory from './HTMLCategory'; import HTMLOperation from './HTMLOperation'; -/* globals Split */ + /** * HTML view for CyberChef responsible for building the web page and dealing with all user diff --git a/src/js/views/html/OperationsWaiter.js b/src/js/views/html/OperationsWaiter.js index 83315fb0..a5f766ed 100755 --- a/src/js/views/html/OperationsWaiter.js +++ b/src/js/views/html/OperationsWaiter.js @@ -1,7 +1,7 @@ import $ from 'jquery'; import HTMLOperation from './HTMLOperation'; -/* globals Sortable */ + /** * Waiter to handle events related to the operations. diff --git a/src/js/views/html/RecipeWaiter.js b/src/js/views/html/RecipeWaiter.js index 54d67215..f0eb8ed2 100755 --- a/src/js/views/html/RecipeWaiter.js +++ b/src/js/views/html/RecipeWaiter.js @@ -1,6 +1,6 @@ import $ from 'jquery'; import HTMLOperation from './HTMLOperation'; -/* globals Sortable */ + /** * Waiter to handle events related to the recipe. diff --git a/src/js/views/html/main.js b/src/js/views/html/main.js index 16fa2c57..f4025d92 100755 --- a/src/js/views/html/main.js +++ b/src/js/views/html/main.js @@ -1,7 +1,7 @@ import HTMLApp from './HTMLApp'; import Categories from '../../config/Categories'; import OperationConfig from '../../config/OperationConfig'; -/* globals moment */ + /** * @author n1474335 [n1474335@gmail.com]