Skip to content

Commit

Permalink
docs: fix syntax in examples for new config files (#16427)
Browse files Browse the repository at this point in the history
  • Loading branch information
mdjermanovic committed Oct 14, 2022
1 parent 28d1902 commit 1692840
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions docs/src/user-guide/configuring/configuration-files-new.md
Expand Up @@ -345,7 +345,7 @@ export default [
files: ["**/*.js"],
plugins: {
jsdoc: jsdoc
}
},
rules: {
"jsdoc/require-description": "error",
"jsdoc/check-values": "error"
Expand All @@ -366,7 +366,7 @@ export default [
files: ["**/*.js"],
plugins: {
jsdoc
}
},
rules: {
"jsdoc/require-description": "error",
"jsdoc/check-values": "error"
Expand All @@ -385,7 +385,7 @@ export default [
files: ["**/*.js"],
plugins: {
jsd: jsdoc
}
},
rules: {
"jsd/require-description": "error",
"jsd/check-values": "error"
Expand Down Expand Up @@ -413,7 +413,7 @@ export default [
files: ["**/*.js"],
plugins: {
jsdoc: jsdoc
}
},
rules: {
"jsdoc/require-description": "warn",
}
Expand All @@ -434,7 +434,7 @@ export default [
plugins: {
markdown
},
processor: "markdown/markdown"
processor: "markdown/markdown",
settings: {
sharedData: "Hello"
}
Expand All @@ -455,7 +455,7 @@ export default [
plugins: {
markdown
},
processor: "markdown/markdown"
processor: "markdown/markdown",
settings: {
sharedData: "Hello"
}
Expand Down

0 comments on commit 1692840

Please sign in to comment.