Add more files to linting, make strict mode optional for each file

This commit is contained in:
Tankred Hase 2016-02-04 10:54:41 +07:00
parent b8f353abe8
commit 642f754169
6 changed files with 13 additions and 32 deletions

View File

@ -1,6 +1,4 @@
{
"strict": true,
"globalstrict": true,
"node": true,
"browser": true,
"nonew": true,

View File

@ -3,40 +3,24 @@
module.exports = function(grunt) {
var lintFiles = [
'src/config/*.js',
'src/config/**/*.js',
'src/crypto/cipher/aes.js',
'src/crypto/cipher/blowfish.js',
'src/crypto/cipher/cast5.js',
'src/crypto/cipher/des.js',
'src/crypto/cipher/index.js',
'src/crypto/hash/index.js',
'src/crypto/hash/md5.js',
'src/crypto/public_key/dsa.js',
'src/crypto/public_key/elgamal.js',
'src/crypto/public_key/index.js',
'src/crypto/public_key/rsa.js',
'src/crypto/*.js',
'src/encoding/*.js',
'src/hkp/*.js',
'src/keyring/*.js',
'src/packet/all_packets.js',
'src/packet/compressed.js',
'src/packet/index.js',
'src/packet/literal.js',
'src/packet/marker.js',
'src/packet/one_pass_signature.js',
'src/packet/packet.js',
'src/packet/public_key.js',
'src/packet/public_key_encrypted_session_key.js',
'src/packet/public_subkey.js',
'src/packet/secret_key.js',
'src/packet/secret_subkey.js',
'src/packet/sym_encrypted_integrity_protected.js',
'src/packet/sym_encrypted_session_key.js',
'src/packet/symmetrically_encrypted.js',
'src/packet/trust.js',
'src/packet/user_attribute.js',
'src/packet/userid.js',
'src/type/*.js',
'src/encoding/**/*.js',
'src/hkp/**/*.js',
'src/keyring/**/*.js',
'src/packet/**/*.jss',
'src/type/**/*.js',
'src/worker/async_proxy.js',
'src/*.js',
]; // add more over time ... goal should be 100% coverage

View File

@ -22,8 +22,6 @@
* @module crypto/cipher/twofish
*/
'use strict';
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//Math
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

View File

@ -19,7 +19,7 @@ function node_hash(type) {
var shasum = nodeCrypto.createHash(type);
shasum.update(new Buffer(data));
return new Uint8Array(shasum.digest());
}
};
}
var hash_fns;

View File

@ -19,8 +19,6 @@
* 1 = SHA-1, 2 = SHA-224/SHA-256, 4 = SHA-384/SHA-512
*/
var util = require('../../util.js');
var SUPPORTED_ALGS = 4 | 2 | 1;
(function (global)

View File

@ -103,8 +103,9 @@ Packetlist.prototype.filterByTag = function () {
var filtered = new Packetlist();
var that = this;
function handle(packetType) {return that[i].tag === packetType;}
for (var i = 0; i < this.length; i++) {
if (args.some(function(packetType) {return that[i].tag === packetType;})) {
if (args.some(handle)) {
filtered.push(this[i]);
}
}
@ -151,8 +152,10 @@ Packetlist.prototype.indexOfTag = function () {
var args = Array.prototype.slice.call(arguments);
var tagIndex = [];
var that = this;
function handle(packetType) {return that[i].tag === packetType;}
for (var i = 0; i < this.length; i++) {
if (args.some(function(packetType) {return that[i].tag == packetType;})) {
if (args.some(handle)) {
tagIndex.push(i);
}
}