Skip to content

Commit 955a082

Browse files
committed
add lint command to package.json. Remove old conflict remnants
1 parent bbc580e commit 955a082

4 files changed

Lines changed: 3 additions & 29 deletions

File tree

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,7 @@
117117
"start": "grunt dev",
118118
"build": "grunt prod",
119119
"test": "grunt test",
120-
"docs": "grunt docs"
120+
"docs": "grunt docs",
121+
"lint": "grunt"
121122
}
122123
}

src/core/config/MetaConfig.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

src/core/config/modules/Default.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ import XKCD from "../../operations/XKCD.js";
4848
* @copyright Crown Copyright 2017
4949
* @license Apache-2.0
5050
*/
51-
let OpModules = typeof self === "undefined" ? {} : self.OpModules || {};
51+
const OpModules = typeof self === "undefined" ? {} : self.OpModules || {};
5252

5353
OpModules.Default = {
5454
"To Hexdump": Hexdump.runTo,

src/core/config/scripts/generateConfig.mjs

Lines changed: 0 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -4155,31 +4155,6 @@ fs.writeFile(
41554155
outputType: "number",
41564156
args: []
41574157
},
4158-
<<<<<<< HEAD:src/core/config/OperationConfig.js
4159-
"Set Operations": {
4160-
module: "Default",
4161-
description: "Performs set operations",
4162-
inputType: "string",
4163-
outputType: "html",
4164-
args: [
4165-
{
4166-
name: "Sample delimiter",
4167-
type: "binaryString",
4168-
value: SetOps.SAMPLE_DELIMITER
4169-
},
4170-
{
4171-
name: "Item delimiter",
4172-
type: "binaryString",
4173-
value: SetOps.ITEM_DELIMITER
4174-
},
4175-
{
4176-
name: "Operation",
4177-
type: "option",
4178-
value: SetOps.OPERATION
4179-
}
4180-
]
4181-
}
4182-
=======
41834158
"Bcrypt": {
41844159
module: "Hashing",
41854160
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(
42614236
outputType: "string",
42624237
args: []
42634238
},
4264-
>>>>>>> esm:src/core/config/scripts/generateConfig.mjs
42654239
};
42664240
*/
42674241

0 commit comments

Comments
 (0)