Skip to content

Commit 99a864e

Browse files
authored
Merge pull request #1123 from strongloop/superkhau/fix-linting-errors
Fix linting errors
2 parents d557fb0 + b089b0d commit 99a864e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

lib/validations.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ Validatable.validatesNumericalityOf = getConfigurator('numericality');
131131
* @param {String} propertyName Property name to validate.
132132
* @options {Object} Options See below
133133
* @property {Array} inArray Property must match one of the values in the array to be valid.
134-
* @property {String} message Optional error message if property is not valid.
134+
* @property {String} message Optional error message if property is not valid.
135135
* Default error message: "is not included in the list".
136136
* @property {Boolean} allowNull Whether null values are allowed.
137137
*/
@@ -146,7 +146,7 @@ Validatable.validatesInclusionOf = getConfigurator('inclusion');
146146
* @options {Object} Options
147147
* @property {Array} inArray Property must match one of the values in the array to be valid.
148148
* @property {String} message Optional error message if property is not valid. Default error message: "is reserved".
149-
* @property {Boolean} allowNull Whether null values are allowed.
149+
* @property {Boolean} allowNull Whether null values are allowed.
150150
*/
151151
Validatable.validatesExclusionOf = getConfigurator('exclusion');
152152

@@ -160,7 +160,7 @@ Validatable.validatesExclusionOf = getConfigurator('exclusion');
160160
* @options {Object} Options
161161
* @property {RegExp} with Regular expression to validate format.
162162
* @property {String} message Optional error message if property is not valid. Default error message: " is invalid".
163-
* @property {Boolean} allowNull Whether null values are allowed.
163+
* @property {Boolean} allowNull Whether null values are allowed.
164164
*/
165165
Validatable.validatesFormatOf = getConfigurator('format');
166166

@@ -214,7 +214,7 @@ Validatable.validate = getConfigurator('custom');
214214
* @param {Function} validatorFn Custom validation function.
215215
* @options {Object} Options See below
216216
* @property {String} message Optional error message if property is not valid. Default error message: " is invalid".
217-
* @property {Boolean} allowNull Whether null values are allowed.
217+
* @property {Boolean} allowNull Whether null values are allowed.
218218
*/
219219
Validatable.validateAsync = getConfigurator('custom', {async: true});
220220

@@ -239,7 +239,7 @@ Validatable.validateAsync = getConfigurator('custom', {async: true});
239239
* @property {RegExp} with Regular expression to validate format.
240240
* @property {Array.<String>} scopedTo List of properties defining the scope.
241241
* @property {String} message Optional error message if property is not valid. Default error message: "is not unique".
242-
* @property {Boolean} allowNull Whether null values are allowed.
242+
* @property {Boolean} allowNull Whether null values are allowed.
243243
*/
244244
Validatable.validatesUniquenessOf = getConfigurator('uniqueness', {async: true});
245245

0 commit comments

Comments
 (0)