mirror of
https://github.com/comit-network/comit-rs
synced 2025-10-06 00:32:52 +02:00
69 lines
1.2 KiB
Plaintext
69 lines
1.2 KiB
Plaintext
|
|
# Created by https://www.gitignore.io/api/rust,jetbrains
|
|
|
|
### JetBrains ###
|
|
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
|
|
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
|
|
|
|
.idea/
|
|
|
|
# Mac
|
|
.DS_Store
|
|
|
|
# CMake
|
|
cmake-build-debug/
|
|
|
|
## File-based project format:
|
|
*.iws
|
|
|
|
## Plugin-specific files:
|
|
|
|
# IntelliJ
|
|
/out/
|
|
|
|
# mpeltonen/sbt-idea plugin
|
|
.idea_modules/
|
|
|
|
# JIRA plugin
|
|
atlassian-ide-plugin.xml
|
|
|
|
# Ruby plugin and RubyMine
|
|
/.rakeTasks
|
|
|
|
# Crashlytics plugin (for Android Studio and IntelliJ)
|
|
com_crashlytics_export_strings.xml
|
|
crashlytics.properties
|
|
crashlytics-build.properties
|
|
fabric.properties
|
|
|
|
### Rust ###
|
|
# Generated by Cargo
|
|
# 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
|
|
|
|
|
|
# End of https://www.gitignore.io/api/rust,jetbrains
|
|
|
|
# vi swap files
|
|
*.swp
|
|
|
|
# Emacs
|
|
TAGS
|
|
|
|
# `cargo cov test` artifacts
|
|
*.gcno
|
|
*.gcda
|
|
|
|
# Blockchain nodes artifacts
|
|
blockchain_nodes/bitcoin/
|
|
blockchain_nodes/parity/parity
|
|
.yalc
|
|
yalc.lock
|