Skip to content

Commit 9bd88ef

Browse files
committed
Auto merge of rust-lang#122272 - lnicola:sync-from-ra, r=lnicola
Subtree update of `rust-analyzer` r? ghost
2 parents cdb775c + b4e3b2e commit 9bd88ef

File tree

188 files changed

+4710
-2348
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

188 files changed

+4710
-2348
lines changed

src/tools/rust-analyzer/.cargo/config.toml

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ xtask = "run --package xtask --bin xtask --"
33
tq = "test -- -q"
44
qt = "tq"
55
lint = "clippy --all-targets -- --cap-lints warn"
6+
codegen = "run --package xtask --bin xtask -- codegen"
67

78
[target.x86_64-pc-windows-msvc]
89
linker = "rust-lld"

src/tools/rust-analyzer/.github/workflows/ci.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,9 @@ jobs:
7979
if: matrix.os == 'ubuntu-latest'
8080
run: sed -i '/\[profile.dev]/a opt-level=1' Cargo.toml
8181

82+
- name: Codegen checks (rust-analyzer)
83+
run: cargo codegen --check
84+
8285
- name: Compile (tests)
8386
run: cargo test --no-run --locked ${{ env.USE_SYSROOT_ABI }}
8487

src/tools/rust-analyzer/.typos.toml

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ extend-exclude = [
55
"crates/parser/test_data/lexer/err/",
66
"crates/project-model/test_data/",
77
]
8-
ignore-hidden = false
98

109
[default]
1110
extend-ignore-re = [

0 commit comments

Comments
 (0)