Skip to content

Commit f1f1aa0

Browse files
committed
chore: remove unneccesary indentation
1 parent ea9f0e6 commit f1f1aa0

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

docs/src/use/getting-started.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -72,18 +72,18 @@ The `pluginJs.configs.recommended` object contains configuration to ensure that
7272
You can configure rules individually by defining a new object with a `rules` key, as in this example:
7373

7474
```js
75-
import pluginJs from "@eslint/js";
76-
77-
export default [
78-
pluginJs.configs.recommended,
75+
import pluginJs from "@eslint/js";
7976

80-
{
81-
rules: {
82-
"no-unused-vars": "warn",
83-
"no-undef": "warn"
84-
}
85-
}
86-
];
77+
export default [
78+
pluginJs.configs.recommended,
79+
80+
{
81+
rules: {
82+
"no-unused-vars": "warn",
83+
"no-undef": "warn"
84+
}
85+
}
86+
];
8787
```
8888

8989
The names `"no-unused-vars"` and `"no-undef"` are the names of [rules](../rules) in ESLint. The first value is the error level of the rule and can be one of these values:

0 commit comments

Comments
 (0)