Skip to content

Commit

Permalink
chore: pre-commit autoupdate (#4997)
Browse files Browse the repository at this point in the history
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
  • Loading branch information
pre-commit-ci[bot] authored Nov 4, 2024
1 parent 164d6d3 commit bc0eb89
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@ repos:
# rustfmt handles rust files, and in some snapshots we expect trailing spaces.
exclude: '.*\.(rs|snap)$'
- repo: https://github.com/crate-ci/typos
rev: v1.26.8
rev: v1.27.0
hooks:
- id: typos
# https://github.com/crate-ci/typos/issues/347
@@ -25,13 +25,13 @@ repos:
# https://github.com/PRQL/prql/issues/3078
- prettier-plugin-go-template
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.7.1
rev: v0.7.2
hooks:
- id: ruff
args: [--fix]
- id: ruff-format
- repo: https://github.com/pre-commit/mirrors-clang-format
rev: v19.1.2
rev: v19.1.3
hooks:
- id: clang-format
types_or: [c, c++]
@@ -45,7 +45,7 @@ repos:
- id: clippy
stages: [manual]
- repo: https://github.com/rhysd/actionlint
rev: v1.7.3
rev: v1.7.4
hooks:
- id: actionlint
- repo: https://github.com/tcort/markdown-link-check
2 changes: 1 addition & 1 deletion prqlc/prqlc/src/ir/pl/expr.rs
Original file line number Diff line number Diff line change
@@ -22,7 +22,7 @@ pub struct Expr {
#[serde(skip_serializing_if = "Option::is_none")]
pub alias: Option<String>,

/// Unique identificator of the node. Set exactly once during semantic::resolve.
/// Unique identifier of the node. Set exactly once during semantic::resolve.
#[serde(skip_serializing_if = "Option::is_none")]
pub id: Option<usize>,

0 comments on commit bc0eb89

Please sign in to comment.