Skip to content

Commit 7b4c7a2

Browse files
authored
Update concepts-shareable-config.md (#3038)
1 parent 5150d3d commit 7b4c7a2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/concepts-shareable-config.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ an object containing `.rules` as default. To use shared configuration you specif
66
```js
77
// commitlint.config.js
88
module.exports = {
9-
extends: ['example'], // => @commitlint-config-example
9+
extends: ['example'], // => commitlint-config-example
1010
};
1111
```
1212

@@ -42,7 +42,7 @@ You can provide the full path of the package like:
4242
```js
4343
// commitlint.config.js
4444
module.exports = {
45-
extends: ['@commitlint/config-conventional'], // => commitlint/config-conventional
45+
extends: ['@commitlint/config-conventional'], // => @commitlint/config-conventional
4646
};
4747
```
4848

@@ -53,7 +53,7 @@ Or just the scope/owner of the package.
5353
```js
5454
// commitlint.config.js
5555
module.exports = {
56-
extends: ['@coolcompany'], // => coolcompany/commitlint-config
56+
extends: ['@coolcompany'], // => @coolcompany/commitlint-config
5757
};
5858
```
5959

0 commit comments

Comments
 (0)