Skip to content

Commit 8391717

Browse files
committed
Implement feedback
1 parent 985a651 commit 8391717

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

lib/validationSchema.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ var ajv = new Ajv({
99
verbose: true
1010
});
1111

12-
function validateWebpackOptions(schema, options) {
12+
function validationSchema(schema, options) {
1313
if(Array.isArray(options)) {
1414
var errors = options.map(validateObject.bind(this, schema));
1515
errors.forEach(function(list, idx) {
@@ -59,4 +59,4 @@ function filterErrors(errors) {
5959
return newErrors;
6060
}
6161

62-
module.exports = validateWebpackOptions;
62+
module.exports = validationSchema;

0 commit comments

Comments
 (0)