Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions scripts/run_lint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,12 @@ IFS=$'\n'
are_errors=0

for file in $diff_files; do
# If the file has been deleted we don't want to run the linter on it
if ! [[ -e $file ]]
then
continue
fi

# We build another grep filter the output of the linting script
lint_grep_filter="^("

Expand Down