Skip to content

Commit

Permalink
Merge pull request #1 from TalusBio/chore/release_prep
Browse files Browse the repository at this point in the history
Prep for publish
  • Loading branch information
jspaezp authored Nov 18, 2024
2 parents d408578 + c10fdd5 commit 7e87338
Show file tree
Hide file tree
Showing 78 changed files with 25,523 additions and 1,996 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,3 @@
/tmp
.env
results.json

31 changes: 31 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v2.3.0
hooks:
- id: trailing-whitespace
- repo: local
hooks:
- id: fmt
name: fmt
description: Format files with cargo fmt.
entry: cargo +nightly fmt
language: system
types: [rust]
args: ["--"]
- id: cargo-check
name: cargo check
description: Check the package for errors.
entry: cargo check
language: system
types: [rust]
pass_filenames: false
- id: clippy
name: clippy
description: Lint rust sources
entry: cargo clippy
language: system
args: ["--", "-D", "warnings"]
types: [rust]
pass_filenames: false


Loading

0 comments on commit 7e87338

Please sign in to comment.