Skip to content

Commit fea1a11

Browse files
authored
Merge pull request #10 from androzdev/dev
feat: rewrite
2 parents 7088115 + 1f43984 commit fea1a11

File tree

482 files changed

+4760
-105907
lines changed

Some content is hidden

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

482 files changed

+4760
-105907
lines changed

.cargo/config.toml

+1-7
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,3 @@
11
[target.aarch64-unknown-linux-musl]
2-
linker = "aarch64-linux-musl-gcc"
2+
linker = "aarch64-linux-musl-gcc"
33
rustflags = ["-C", "target-feature=-crt-static"]
4-
5-
[target.x86_64-apple-darwin]
6-
rustflags = ["-C", "link-args=-Wl,-undefined,dynamic_lookup"]
7-
8-
[target.aarch64-apple-darwin]
9-
rustflags = ["-C", "link-args=-Wl,-undefined,dynamic_lookup"]

.editorconfig

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# EditorConfig helps developers define and maintain consistent
2+
# coding styles between different editors or IDEs
3+
# http://editorconfig.org
4+
root = true
5+
6+
[*]
7+
indent_style = space
8+
indent_size = 2
9+
end_of_line = lf
10+
charset = utf-8
11+
trim_trailing_whitespace = true
12+
insert_final_newline = true
13+
14+
[*.md]
15+
trim_trailing_whitespace = false

.gitattributes

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Auto detect text files and perform LF normalization
2+
* text=auto
3+
4+
5+
*.ts text eol=lf merge=union
6+
*.tsx text eol=lf merge=union
7+
*.rs text eol=lf merge=union
8+
*.*js text eol=lf merge=union linguist-language=TypeScript
9+
*.json text eol=lf merge=union
10+
*.debug text eol=lf merge=union
11+
12+
# Generated codes
13+
index.js linguist-detectable=false
14+
index.d.ts linguist-detectable=false

.github/renovate.json

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
3+
"extends": ["config:base", "group:allNonMajor", ":preserveSemverRanges", ":disablePeerDependencies"],
4+
"labels": ["dependencies"],
5+
"packageRules": [
6+
{
7+
"matchPackageNames": ["@napi/cli", "napi", "napi-build", "napi-derive"],
8+
"addLabels": ["napi-rs"],
9+
"groupName": "napi-rs"
10+
},
11+
{
12+
"matchPackagePatterns": ["^eslint", "^@typescript-eslint"],
13+
"groupName": "linter"
14+
}
15+
],
16+
"commitMessagePrefix": "chore: ",
17+
"commitMessageAction": "bump up",
18+
"commitMessageTopic": "{{depName}} version",
19+
"ignoreDeps": []
20+
}

0 commit comments

Comments
 (0)