-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: try rustwasm and wasm-pack usage
- Loading branch information
Showing
19 changed files
with
1,681 additions
and
600 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# Add directories or file patterns to ignore during indexing (e.g. foo/ or *.csv) | ||
|
||
# 忽略 .cursorignore 文件本身 | ||
.cursorignore | ||
|
||
# 忽略常见的构建和依赖目录 | ||
/target/ | ||
/node_modules/ | ||
|
||
# 忽略常见的临时文件和日志 | ||
*.log | ||
*.tmp | ||
*.temp | ||
|
||
# 忽略操作系统生成的文件 | ||
.DS_Store | ||
Thumbs.db | ||
|
||
# 忽略编辑器和IDE生成的文件和目录 | ||
.vscode/ | ||
.idea/ | ||
*.swp | ||
*~ | ||
|
||
# 忽略编译生成的文件 | ||
*.o | ||
*.pyc | ||
*.class | ||
|
||
# 忽略敏感信息文件 | ||
*.env | ||
*.key | ||
*.pem | ||
|
||
# 忽略大型数据文件 | ||
*.csv | ||
*.json | ||
*.xml | ||
|
||
# 忽略备份文件 | ||
*.bak | ||
*.backup |
Oops, something went wrong.