Skip to content

Commit fbe6be0

Browse files
committed
Initial commit
0 parents  commit fbe6be0

Some content is hidden

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

96 files changed

+12283
-0
lines changed

.cargo/config.toml

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[target.x86_64-pc-windows-msvc]
2+
rustflags = ["-C", "target-feature=+crt-static"]
3+
4+
[target.aarch64-pc-windows-msvc]
5+
rustflags = ["-C", "target-feature=+crt-static"]

.editorconfig

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
end_of_line = lf
6+
indent_style = space
7+
indent_size = 4
8+
insert_final_newline = true
9+
10+
[*.json]
11+
insert_final_newline = false
12+
13+
[*.md]
14+
indent_size = 2

.gitignore

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
/target
2+
3+
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
4+
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
5+
/cli/Cargo.lock
6+
7+
# These are backup files generated by rustfmt
8+
**/*.rs.bk
9+
10+
# Editor directories and files
11+
.vscode/*
12+
!.vscode/settings.json
13+
!.vscode/extensions.json
14+
.idea
15+
.DS_Store
16+
*.suo
17+
*.ntvs*
18+
*.njsproj
19+
*.sln
20+
*.sw?

.prettierrc.toml

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
arrowParens = "avoid"
2+
quoteProps = "as-needed"
3+
printWidth = 120
4+
semi = true
5+
trailingComma = "none"

.rustfmt.toml

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
max_width = 120
2+
tab_spaces = 4
3+
edition = "2021"

.vscode/extensions.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"recommendations": ["tauri-apps.tauri-vscode", "rust-lang.rust-analyzer"]
3+
}

.vscode/settings.json

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"eslint.workingDirectories": [
3+
{
4+
"mode": "auto"
5+
}
6+
],
7+
"typescript.preferences.importModuleSpecifier": "shortest",
8+
"typescript.preferences.importModuleSpecifierEnding": "minimal"
9+
}

0 commit comments

Comments
 (0)