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';
/* globals CryptoJS, moment */
/**
* Utility functions for use in operations, the core framework and the stage.

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -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

View File

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

View File

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

View File

@ -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]