Skip to content

Commit

Permalink
docs: tweak syntax to be shell-compliant
Browse files Browse the repository at this point in the history
  • Loading branch information
bjaglin authored Oct 4, 2024
1 parent 77f46da commit 36f1874
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/users/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,11 +117,11 @@ lint.error.includes = ".*"
lint.error.excludes = "UnusedScalafixSuppression"
```

is equivalent to the following CLI arguments
is equivalent to the following CLI arguments (note the escaped wildcard)

```
scalafix ... \
$ scalafix ... \
--settings.DisableSyntax.noFinalize=true \
--settings.lint.error.includes=.* \
--settings.lint.error.includes=.\* \
--settings.lint.error.excludes=UnusedScalafixSuppression
```

0 comments on commit 36f1874

Please sign in to comment.