We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 09a0761 commit 9d3c282Copy full SHA for 9d3c282
.prettierrc
@@ -3,7 +3,7 @@
3
"printWidth": 80,
4
"tabWidth": 2,
5
"singleQuote": false,
6
- "trailingComma": "all",
+ "trailingComma": "es5",
7
"parser": "babylon",
8
"semi": true,
9
"quoteProps": "consistent"
source/code-snippets/usage-examples/replaceOne.js
@@ -40,7 +40,7 @@ async function run() {
40
}
41
if (result.upsertedCount === 1) {
42
console.log(
43
- "Inserted one new document with an _id of " + result.upsertedId._id,
+ "Inserted one new document with an _id of " + result.upsertedId._id
44
);
45
46
0 commit comments