Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main'
Browse files Browse the repository at this point in the history
# Conflicts:
#	harness/src/utils.rs
  • Loading branch information
jyc0011 committed Oct 3, 2024
2 parents 5a313e7 + 4ba70d0 commit ab3e150
Show file tree
Hide file tree
Showing 87 changed files with 5,296 additions and 1,045 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ kill
exec
.envrc

.idea

tests/fixtures
tests/tests/fixtures
logs
25 changes: 25 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
repos:
- repo: https://github.com/doublify/pre-commit-rust
rev: v1.0
hooks:
- id: fmt
name: Running "cargo fmt"
description: Format files with cargo fmt.
- id: clippy
name: Running "cargo clippy"
description: Lint rust sources

- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-yaml
- id: check-added-large-files

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.6.7
hooks:
- id: ruff
args: [--fix, --exit-non-zero-on-fix]
- id: ruff-format
Loading

0 comments on commit ab3e150

Please sign in to comment.