add lint command to package.json. Remove old conflict remnants

This commit is contained in:
d98762625 2018-04-09 15:38:44 +01:00
parent bbc580e71b
commit 955a082614
4 changed files with 3 additions and 29 deletions

View File

@ -117,6 +117,7 @@
"start": "grunt dev",
"build": "grunt prod",
"test": "grunt test",
"docs": "grunt docs"
"docs": "grunt docs",
"lint": "grunt"
}
}

File diff suppressed because one or more lines are too long

View File

@ -48,7 +48,7 @@ import XKCD from "../../operations/XKCD.js";
* @copyright Crown Copyright 2017
* @license Apache-2.0
*/
let OpModules = typeof self === "undefined" ? {} : self.OpModules || {};
const OpModules = typeof self === "undefined" ? {} : self.OpModules || {};
OpModules.Default = {
"To Hexdump": Hexdump.runTo,

View File

@ -4155,31 +4155,6 @@ fs.writeFile(
outputType: "number",
args: []
},
<<<<<<< HEAD:src/core/config/OperationConfig.js
"Set Operations": {
module: "Default",
description: "Performs set operations",
inputType: "string",
outputType: "html",
args: [
{
name: "Sample delimiter",
type: "binaryString",
value: SetOps.SAMPLE_DELIMITER
},
{
name: "Item delimiter",
type: "binaryString",
value: SetOps.ITEM_DELIMITER
},
{
name: "Operation",
type: "option",
value: SetOps.OPERATION
}
]
}
=======
"Bcrypt": {
module: "Hashing",
description: "bcrypt is a password hashing function designed by Niels Provos and David Mazières, based on the Blowfish cipher, and presented at USENIX in 1999. Besides incorporating a salt to protect against rainbow table attacks, bcrypt is an adaptive function: over time, the iteration count (rounds) can be increased to make it slower, so it remains resistant to brute-force search attacks even with increasing computation power.<br><br>Enter the password in the input to generate its hash.",
@ -4261,7 +4236,6 @@ fs.writeFile(
outputType: "string",
args: []
},
>>>>>>> esm:src/core/config/scripts/generateConfig.mjs
};
*/