Skip to content

Commit

Permalink
refactor: switch to Rust (#131)
Browse files Browse the repository at this point in the history
Co-authored-by: Tyler J Russell <xtylerjrx@gmail.com>
Co-authored-by: Micah Benac <66775276+OfficialSirH@users.noreply.github.com>
  • Loading branch information
3 people authored Apr 16, 2024
1 parent 53cecee commit 7260e2c
Show file tree
Hide file tree
Showing 79 changed files with 6,568 additions and 8,941 deletions.
3 changes: 3 additions & 0 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[target.aarch64-unknown-linux-musl]
linker = "aarch64-linux-musl-gcc"
rustflags = ["-C", "target-feature=-crt-static"]
54 changes: 0 additions & 54 deletions .clang-format

This file was deleted.

128 changes: 0 additions & 128 deletions .github/CODE_OF_CONDUCT.md

This file was deleted.

8 changes: 0 additions & 8 deletions .github/FUNDING.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/hooks/commit-msg
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/sh

yarn commitlint --edit $1
yarn commitlint --edit $1
2 changes: 1 addition & 1 deletion .github/hooks/pre-commit
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/sh

yarn lint-staged
yarn lint-staged
22 changes: 0 additions & 22 deletions .github/problemMatchers/eslint.json

This file was deleted.

17 changes: 0 additions & 17 deletions .github/problemMatchers/tsc.json

This file was deleted.

13 changes: 12 additions & 1 deletion .github/renovate.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"enabled": false
"extends": ["github>sapphiredev/readme:sapphire-renovate"],
"packageRules": [
{
"matchPackageNames": ["@napi/cli", "napi", "napi-build", "napi-derive"],
"addLabels": ["napi-rs"],
"groupName": "napi-rs"
},
{
"matchPackagePatterns": ["^eslint", "^@typescript-eslint"],
"groupName": "linter"
}
]
}
Loading

0 comments on commit 7260e2c

Please sign in to comment.