Skip to content

Commit

Permalink
Merge pull request #201 from xt0rted/xt0rted-patch-1
Browse files Browse the repository at this point in the history
Fix usage example
  • Loading branch information
xt0rted authored Mar 30, 2024
2 parents 0c9cbde + 5b628da commit a3ff9ad
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@

- Synced code with [stylelint 16.0.0](https://github.com/stylelint/stylelint/releases/tag/16.0.0)
- Migrated to ESM and changed `.js` extensions to `.mjs`
- Loading the string formatter: `--custom-formatter=stylelint-actions-formatters`
- Loading the verbose formatter: `--custom-formatter=stylelint-actions-formatters/src/verboseFormatter.mjs`

## [15.11.0](https://github.com/xt0rted/stylelint-actions-formatters/compare/v15.10.3...v15.11.0) - 2023-12-28

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ It also has a peer dependency on that version.
### String formatter

```console
stylelint "scss/**/*.scss" --custom-formatter=node_modules/stylelint-actions-formatters
stylelint "scss/**/*.scss" --custom-formatter=stylelint-actions-formatters
```

### Verbose formatter

```console
stylelint "scss/**/*.scss" --custom-formatter=node_modules/stylelint-actions-formatters/src/verboseFormatter.mjs
stylelint "scss/**/*.scss" --custom-formatter=stylelint-actions-formatters/src/verboseFormatter.mjs
```

> Note: If you're not running on GitHub Actions then these reporters will function the same as the ones that ship with Stylelint.

0 comments on commit a3ff9ad

Please sign in to comment.