diff --git a/docs/stylelint.md b/docs/stylelint.md index 52c44f06..063b3af6 100644 --- a/docs/stylelint.md +++ b/docs/stylelint.md @@ -68,7 +68,7 @@ A factory function to create a linter aspect.
 load("@aspect_rules_lint//lint:stylelint.bzl", "stylelint_action")
 
-stylelint_action(ctx, executable, srcs, stderr, exit_code, env, options)
+stylelint_action(ctx, executable, srcs, stderr, exit_code, env, options, format)
 
Spawn stylelint as a Bazel action @@ -85,6 +85,7 @@ Spawn stylelint as a Bazel action | exit_code | output file containing the exit code of stylelint. If None, then fail the build when stylelint exits non-zero. Exit codes may be: 1 - fatal error 2 - lint problem 64 - invalid CLI usage 78 - invalid configuration file | `None` | | env | environment variables for stylelint | `{}` | | options | additional command-line arguments | `[]` | +| format | a formatter to add as a command line argument | `None` |