add lintWarning to user.js
This commit is contained in:
parent
018a8b970c
commit
cc62ca23a3
1 changed files with 2 additions and 1 deletions
|
@ -13,7 +13,8 @@ const userSchema = new Schema({
|
||||||
fontSize: { type: Number, default: 18 },
|
fontSize: { type: Number, default: 18 },
|
||||||
indentationAmount: { type: Number, default: 2 },
|
indentationAmount: { type: Number, default: 2 },
|
||||||
isTabIndent: { type: Boolean, default: false },
|
isTabIndent: { type: Boolean, default: false },
|
||||||
autosave: { type: Boolean, default: true }
|
autosave: { type: Boolean, default: true },
|
||||||
|
lintWarning: { type: Boolean, default: false }
|
||||||
}
|
}
|
||||||
}, { timestamps: true });
|
}, { timestamps: true });
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue