Skip to content
This repository has been archived by the owner on Jul 1, 2024. It is now read-only.

ci(pre-commit): autoupdate #170

Merged
merged 2 commits into from
Jun 14, 2024
Merged
Show file tree
Hide file tree
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
20 changes: 10 additions & 10 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ ci:

repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
rev: v4.6.0
hooks:
- id: check-json
- id: check-merge-conflict
Expand All @@ -18,18 +18,18 @@ repos:
args: [--markdown-linebreak-ext=md]

- repo: https://github.com/igorshubovych/markdownlint-cli
rev: v0.33.0
rev: v0.41.0
hooks:
- id: markdownlint
args: [-c, .markdownlint.yaml, --fix]

- repo: https://github.com/pre-commit/mirrors-prettier
rev: v3.0.0-alpha.6
rev: v4.0.0-alpha.8
hooks:
- id: prettier

- repo: https://github.com/adrienverge/yamllint
rev: v1.30.0
rev: v1.35.1
hooks:
- id: yamllint

Expand All @@ -44,29 +44,29 @@ repos:
- id: sort-package-xml

- repo: https://github.com/shellcheck-py/shellcheck-py
rev: v0.9.0.2
rev: v0.10.0.1
hooks:
- id: shellcheck

- repo: https://github.com/scop/pre-commit-shfmt
rev: v3.6.0-2
rev: v3.8.0-1
hooks:
- id: shfmt
args: [-w, -s, -i=4]

- repo: https://github.com/pycqa/isort
rev: 5.12.0
rev: 5.13.2
hooks:
- id: isort

- repo: https://github.com/psf/black
rev: 23.3.0
rev: 24.4.2
hooks:
- id: black
args: [--line-length=100]

- repo: https://github.com/pre-commit/mirrors-clang-format
rev: v16.0.0
rev: v18.1.6
hooks:
- id: clang-format
types_or: [c++, c, cuda]
Expand All @@ -79,7 +79,7 @@ repos:
exclude: .cu

- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.23.2
rev: 0.28.5
hooks:
- id: check-metaschema
files: ^.+/schema/.*schema\.json$
Expand Down
6 changes: 3 additions & 3 deletions tmp/lanelet2_extension/lib/visualization.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -694,7 +694,7 @@ visualization_msgs::msg::MarkerArray visualization::detectionAreasAsMarkerArray(
marker.colors.push_back(c);
}
} // for triangles0
} // for detection areas
} // for detection areas
marker_array.markers.push_back(marker);

// stop line visualization
Expand Down Expand Up @@ -761,7 +761,7 @@ visualization_msgs::msg::MarkerArray visualization::noParkingAreasAsMarkerArray(
marker.colors.push_back(c);
}
} // for triangles0
} // for no_parking areas
} // for no_parking areas
marker_array.markers.push_back(marker);
} // for regulatory elements
return marker_array;
Expand Down Expand Up @@ -831,7 +831,7 @@ visualization_msgs::msg::MarkerArray visualization::noStoppingAreasAsMarkerArray
marker.colors.push_back(c);
}
} // for triangles0
} // for no_stopping areas
} // for no_stopping areas
marker_array.markers.push_back(marker);
const auto & stop_line = no_reg_elem->stopLine();
// stop line visualization
Expand Down
Loading