mirror of
https://github.com/danbulant/convex-macros
synced 2026-05-19 03:58:31 +00:00
30 lines
480 B
Text
30 lines
480 B
Text
# will have compiled files and executables
|
|
/target/
|
|
|
|
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
|
|
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
|
|
Cargo.lock
|
|
|
|
# These are backup files generated by rustfmt
|
|
**/*.rs.bk
|
|
|
|
# dependencies
|
|
node_modules
|
|
.pnp
|
|
.pnp.js
|
|
|
|
# misc
|
|
.DS_Store
|
|
*.pem
|
|
|
|
# debug
|
|
npm-debug.log*
|
|
|
|
# local env files
|
|
.env
|
|
|
|
# use pnpm, not npm
|
|
.package-lock.json
|
|
|
|
# vscode settings
|
|
.vscode
|