You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`--lint-only`, or `builtinLint = true` in the package configuration) drives a
861
861
build of the targeted modules with the requested linter options enabled.
862
862
The lint driver path on its own does not trigger a build.
@@ -869,8 +869,9 @@ with `lintDriverArgs` from the package config plus any arguments after
869
869
OPTIONS:
870
870
--builtin-lint run builtin environment and text linters
871
871
--builtin-only run only builtin linters, skip the lint driver
872
-
--clippy run only non-default (clippy) builtin linters
873
-
--lint-all run all registered linters, including defaults, clippy,
872
+
--extra run default builtin linters together with the
873
+
non-default (extra) ones
874
+
--lint-all run all registered linters, including defaults, extras,
874
875
and any other disabled-by-default linters
875
876
--lint-only <name> run only the specified linter (repeatable)
876
877
@@ -899,7 +900,7 @@ A script lint driver will be run with the package configuration's
899
900
`lintDriverArgs` plus the CLI `args`. An executable lint driver will be
900
901
built and then run like a script.
901
902
902
-
The builtin linters are a set of linters that can run as part of a build. Some of them are run by default; these linters are run when `--builtin-lint` is specified. Other linters are {deftech}_clippy_ linters; these linters are run only when `--clippy` is specified.
903
+
The builtin linters are a set of linters that can run as part of a build. Some of them are run by default; these linters are run when `--builtin-lint` is specified. Other linters are extra linters; these linters are run only when `--extra` is specified.
903
904
904
905
The {lakeMeta}`options` may be:
905
906
@@ -911,13 +912,13 @@ The {lakeMeta}`options` may be:
911
912
912
913
Run only default builtin linters, skip the lint driver
913
914
914
-
: `--clippy`
915
+
: `--extra`
915
916
916
-
Run only non-default (clippy) builtin linters
917
+
Run only non-default (extra) builtin linters
917
918
918
919
: `--lint-all`
919
920
920
-
Run all registered linters, including defaults, clippy,
921
+
Run all registered linters, including defaults, extra,
0 commit comments