remove globals ignore

This commit is contained in:
Thomas Grainger 2016-11-29 02:08:20 +00:00
parent 640f555b8a
commit 95daa65d7d
No known key found for this signature in database
GPG key ID: 995EA0A029283160
21 changed files with 21 additions and 21 deletions

View file

@ -1,6 +1,6 @@
import $ from 'jquery'; import $ from 'jquery';
/* globals CryptoJS, moment */
/** /**
* Utility functions for use in operations, the core framework and the stage. * Utility functions for use in operations, the core framework and the stage.

View file

@ -1,6 +1,6 @@
import Utils from '../core/Utils'; import Utils from '../core/Utils';
/* globals CryptoJS */
/** /**
* Bitwise operations. * Bitwise operations.

View file

@ -1,6 +1,6 @@
import Utils from '../core/Utils'; import Utils from '../core/Utils';
/* globals app */
/** /**
* Byte representation operations. * Byte representation operations.

View file

@ -1,6 +1,6 @@
import Utils from '../core/Utils'; import Utils from '../core/Utils';
/* globals CryptoJS */
/** /**
* Character encoding operations. * Character encoding operations.

View file

@ -1,5 +1,5 @@
import Utils from '../core/Utils'; import Utils from '../core/Utils';
/* globals CryptoJS, blowfish */
/** /**
* Cipher operations. * Cipher operations.

View file

@ -1,6 +1,6 @@
import Utils from '../core/Utils'; import Utils from '../core/Utils';
/* globals prettyPrintOne, vkbeautify */
/** /**
* Code operations. * Code operations.

View file

@ -1,7 +1,7 @@
import Utils from '../core/Utils'; import Utils from '../core/Utils';
import Uint8Array from 'core-js/modules/es6.typed.uint8-array'; import Uint8Array from 'core-js/modules/es6.typed.uint8-array';
/* globals Zlib, bzip2 */
/** /**
* Compression operations. * Compression operations.

View file

@ -1,4 +1,4 @@
/* globals moment */
/** /**
* Date and time operations. * Date and time operations.

View file

@ -1,4 +1,4 @@
/* globals UAS_parser */
/** /**
* HTTP operations. * HTTP operations.

View file

@ -1,6 +1,6 @@
import Utils from '../core/Utils'; import Utils from '../core/Utils';
/* globals CryptoJS, Checksum */
/** /**
* Hashing operations. * Hashing operations.

View file

@ -1,6 +1,6 @@
import Utils from '../core/Utils'; import Utils from '../core/Utils';
/* globals app */
/** /**
* Hexdump operations. * Hexdump operations.

View file

@ -1,6 +1,6 @@
import Utils from '../core/Utils'; import Utils from '../core/Utils';
/* globals BigInteger */
/** /**
* Internet Protocol address operations. * Internet Protocol address operations.

View file

@ -1,4 +1,4 @@
/* globals esprima, escodegen, esmangle */
/** /**
* JavaScript operations. * JavaScript operations.

View file

@ -1,6 +1,6 @@
import Utils from '../core/Utils'; import Utils from '../core/Utils';
/* globals X509, KJUR, ASN1HEX, KEYUTIL, BigInteger */
/** /**
* Public Key operations. * Public Key operations.

View file

@ -1,4 +1,4 @@
/* globals punycode */
/** /**
* Punycode operations. * Punycode operations.

View file

@ -1,6 +1,6 @@
import Utils from '../core/Utils'; import Utils from '../core/Utils';
/* globals JsDiff */
/** /**
* String utility operations. * String utility operations.

View file

@ -1,5 +1,5 @@
import Utils from '../core/Utils'; import Utils from '../core/Utils';
/* globals unescape */
/** /**
* URL operations. * URL operations.

View file

@ -7,7 +7,7 @@ import HTMLCategory from './HTMLCategory';
import HTMLOperation from './HTMLOperation'; import HTMLOperation from './HTMLOperation';
/* globals Split */
/** /**
* HTML view for CyberChef responsible for building the web page and dealing with all user * HTML view for CyberChef responsible for building the web page and dealing with all user

View file

@ -1,7 +1,7 @@
import $ from 'jquery'; import $ from 'jquery';
import HTMLOperation from './HTMLOperation'; import HTMLOperation from './HTMLOperation';
/* globals Sortable */
/** /**
* Waiter to handle events related to the operations. * Waiter to handle events related to the operations.

View file

@ -1,6 +1,6 @@
import $ from 'jquery'; import $ from 'jquery';
import HTMLOperation from './HTMLOperation'; import HTMLOperation from './HTMLOperation';
/* globals Sortable */
/** /**
* Waiter to handle events related to the recipe. * Waiter to handle events related to the recipe.

View file

@ -1,7 +1,7 @@
import HTMLApp from './HTMLApp'; import HTMLApp from './HTMLApp';
import Categories from '../../config/Categories'; import Categories from '../../config/Categories';
import OperationConfig from '../../config/OperationConfig'; import OperationConfig from '../../config/OperationConfig';
/* globals moment */
/** /**
* @author n1474335 [n1474335@gmail.com] * @author n1474335 [n1474335@gmail.com]