From 96ce0eb009a2309fc04f1ec0617dc0c49468ca05 Mon Sep 17 00:00:00 2001 From: Valeri Karpov Date: Sat, 12 Oct 2019 15:28:24 -0400 Subject: [PATCH] style: fix lint --- lib/options/SchemaArrayOptions.js | 2 +- lib/options/SchemaBufferOptions.js | 2 +- lib/options/SchemaDateOptions.js | 2 +- lib/options/SchemaNumberOptions.js | 2 +- lib/options/SchemaObjectIdOptions.js | 2 +- lib/options/SchemaStringOptions.js | 2 +- lib/options/SchemaTypeOptions.js | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/lib/options/SchemaArrayOptions.js b/lib/options/SchemaArrayOptions.js index 5ad6fe9060a..74c39f69098 100644 --- a/lib/options/SchemaArrayOptions.js +++ b/lib/options/SchemaArrayOptions.js @@ -6,7 +6,7 @@ const SchemaTypeOptions = require('./SchemaTypeOptions'); * The options defined on an Array schematype. * * ####Example: - * + * * const schema = new Schema({ tags: [String] }); * schema.path('tags').options; // SchemaArrayOptions instance * diff --git a/lib/options/SchemaBufferOptions.js b/lib/options/SchemaBufferOptions.js index d5cb9bda23c..96577b989e2 100644 --- a/lib/options/SchemaBufferOptions.js +++ b/lib/options/SchemaBufferOptions.js @@ -6,7 +6,7 @@ const SchemaTypeOptions = require('./SchemaTypeOptions'); * The options defined on a Buffer schematype. * * ####Example: - * + * * const schema = new Schema({ bitmap: Buffer }); * schema.path('bitmap').options; // SchemaBufferOptions instance * diff --git a/lib/options/SchemaDateOptions.js b/lib/options/SchemaDateOptions.js index 5a78ea44aeb..5a88a77a8c2 100644 --- a/lib/options/SchemaDateOptions.js +++ b/lib/options/SchemaDateOptions.js @@ -6,7 +6,7 @@ const SchemaTypeOptions = require('./SchemaTypeOptions'); * The options defined on a Date schematype. * * ####Example: - * + * * const schema = new Schema({ startedAt: Date }); * schema.path('startedAt').options; // SchemaDateOptions instance * diff --git a/lib/options/SchemaNumberOptions.js b/lib/options/SchemaNumberOptions.js index 4b016bebd0d..6260ea74a10 100644 --- a/lib/options/SchemaNumberOptions.js +++ b/lib/options/SchemaNumberOptions.js @@ -6,7 +6,7 @@ const SchemaTypeOptions = require('./SchemaTypeOptions'); * The options defined on a Number schematype. * * ####Example: - * + * * const schema = new Schema({ count: Number }); * schema.path('count').options; // SchemaNumberOptions instance * diff --git a/lib/options/SchemaObjectIdOptions.js b/lib/options/SchemaObjectIdOptions.js index 948116e04ae..440701cea31 100644 --- a/lib/options/SchemaObjectIdOptions.js +++ b/lib/options/SchemaObjectIdOptions.js @@ -6,7 +6,7 @@ const SchemaTypeOptions = require('./SchemaTypeOptions'); * The options defined on an ObjectId schematype. * * ####Example: - * + * * const schema = new Schema({ testId: mongoose.ObjectId }); * schema.path('testId').options; // SchemaObjectIdOptions instance * diff --git a/lib/options/SchemaStringOptions.js b/lib/options/SchemaStringOptions.js index 72271828224..11e8848a787 100644 --- a/lib/options/SchemaStringOptions.js +++ b/lib/options/SchemaStringOptions.js @@ -6,7 +6,7 @@ const SchemaTypeOptions = require('./SchemaTypeOptions'); * The options defined on a string schematype. * * ####Example: - * + * * const schema = new Schema({ name: String }); * schema.path('name').options; // SchemaStringOptions instance * diff --git a/lib/options/SchemaTypeOptions.js b/lib/options/SchemaTypeOptions.js index 6b7444f1333..3dfff15665e 100644 --- a/lib/options/SchemaTypeOptions.js +++ b/lib/options/SchemaTypeOptions.js @@ -6,7 +6,7 @@ const utils = require('../utils'); * The options defined on a schematype. * * ####Example: - * + * * const schema = new Schema({ name: String }); * schema.path('name').options instanceof mongoose.SchemaTypeOptions; // true *