Skip to content

Commit

Permalink
docs: correct rule name
Browse files Browse the repository at this point in the history
  • Loading branch information
d0whc3r committed Sep 16, 2019
1 parent 2f0e0c4 commit 5c52b74
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions docs/ban-prefix.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ An array of `"string"`s which no Component `tag` will be allowed to use as a pre
### Config examples

```json
{ "ban-prefix": ["error", ["stencil"]] }
{ "@d0whc3r/stencil/ban-prefix": ["error", ["stencil"]] }
```

```json
{ "ban-prefix": ["error", ["stencil", "st", "stnl"]] }
{ "@d0whc3r/stencil/ban-prefix": ["error", ["stencil", "st", "stnl"]] }
```

## Schema
Expand Down
2 changes: 1 addition & 1 deletion docs/class-pattern.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ An object containing:
### Config examples

```json
{ "class-pattern": ["error", { "pattern": "^(?!NoStart).*Component$", "ignoreCase": true }] }
{ "@d0whc3r/stencil/class-pattern": ["error", { "pattern": "^(?!NoStart).*Component$", "ignoreCase": true }] }
```

## Schema
Expand Down
2 changes: 1 addition & 1 deletion docs/decorators-style.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ If decorators are composed (multiple decorators for a single declaration), "mult
### Config examples

```json
{ "decorators-style": ["error", { "prop": "inline", "method": "multiline" }] }
{ "@d0whc3r/stencil/decorators-style": ["error", { "prop": "inline", "method": "multiline" }] }
```

## Schema
Expand Down
2 changes: 1 addition & 1 deletion docs/required-prefix.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ An array of `"string"`s which Component `tag` will be use as a prefix.
### Config examples

```json
{ "required-prefix": ["error", ["app"]] }
{ "@d0whc3r/stencil/required-prefix": ["error", ["app"]] }
```

## Schema
Expand Down

0 comments on commit 5c52b74

Please sign in to comment.