Skip to content

Commit

Permalink
Fix lint.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
smoelius committed Jun 11, 2024
1 parent 605bd99 commit a3541e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/lint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ EXAMPLES="$(echo "$EXAMPLE_DIRS" | xargs -n 1 basename | tr '\n' ' ')"
RESTRICTION_DIRS="$(find examples/restriction -mindepth 1 -maxdepth 1 -type d ! -name .cargo)"
RESTRICTIONS="$(echo "$RESTRICTION_DIRS" | xargs -n 1 basename | tr '\n' ' ')"

EXPERIMENTAL_DIRS="$(echo examples/experimental/*)"
EXPERIMENTAL_DIRS="$(find examples/experimental -mindepth 1 -maxdepth 1 -type d ! -name .cargo)"

# smoelius: `overscoped_allow` must be run after other lints have been run. (See its documentation.)
EXAMPLES="$(echo "$EXAMPLES" | sed 's/\<overscoped_allow\>[[:space:]]*//')"
Expand Down

0 comments on commit a3541e4

Please sign in to comment.