Skip to content

Commit

Permalink
Merge branch 'main' into plugin-jsdoc/check-access
Browse files Browse the repository at this point in the history
  • Loading branch information
leaysgur authored Apr 2, 2024
2 parents 1e93e27 + 93897c5 commit 36d926b
Show file tree
Hide file tree
Showing 32 changed files with 2,043 additions and 133 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ecosystem.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
save-cache: ${{ github.ref_name == 'main' }}

- name: Build oxlint
run: cargo build --release -p oxc_cli --bin oxlint
run: cargo build --release -p oxc_cli --bin oxlint --features allocator

- name: Upload Binary
uses: actions/upload-artifact@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release_cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ jobs:

- name: Build Binary
# strip debug symbols from std, see https://github.com/johnthagen/min-sized-rust#remove-panic-string-formatting-with-panic_immediate_abort
run: cargo build --release --target ${{ matrix.target }} -p oxc_cli
run: cargo build --release --target ${{ matrix.target }} -p oxc_cli --features allocator
env:
CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER: aarch64-linux-gnu-gcc

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release_oxlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ jobs:
run: rustup target add ${{ matrix.target }}

- name: Build with cross
run: cross build -p oxc_cli --bin oxlint --release --target=${{ matrix.target }}
run: cross build -p oxc_cli --bin oxlint --release --target=${{ matrix.target }} --features allocator

# The binary is zipped to fix permission loss https://github.com/actions/upload-artifact#permission-loss
- name: Archive Binary
Expand Down
2 changes: 2 additions & 0 deletions .typos.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,11 @@ extend-exclude = [
"crates/oxc_parser/src/lexer/byte_handlers.rs",
"crates/oxc_linter/fixtures",
"crates/oxc_linter/src/rules/jsx_a11y/img_redundant_alt.rs",
"crates/oxc_linter/src/rules/react/no_unknown_property.rs",
"crates/oxc_syntax/src/xml_entities.rs",
"**/*.snap",
"pnpm-lock.yaml",
"**/*/CHANGELOG.md",
]

[default.extend-words]
Expand Down
93 changes: 31 additions & 62 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ ropey = "1.6.1"
seq-macro = "0.3.5"
serde = "1.0.197"
serde_json = "1.0.115"
syn = "=1.0.109"
syn = "2.0.57"
tempfile = "3.10.1"
thiserror = "1.0.58"
tokio = "1"
Expand Down
Loading

0 comments on commit 36d926b

Please sign in to comment.