mirror of
https://github.com/Llewellynvdm/starship.git
synced 2024-11-05 12:57:50 +00:00
b14be4dfb1
* Add gitignore for Emacs backup files. * Add package version support for Maven pom.xml. * Update docs with Maven package version support. * Fix for clippy.
31 lines
534 B
Plaintext
31 lines
534 B
Plaintext
# 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
|
|
|
|
# VSCode configuration
|
|
.vscode/
|
|
|
|
# Sublime Text configuration
|
|
*.sublime-*
|
|
|
|
# IntelliJ IDE configuration
|
|
.idea/
|
|
/*.iml
|
|
|
|
# Vim swap files
|
|
*.swp
|
|
|
|
# Emacs
|
|
*~
|
|
\#*\#
|
|
|
|
# Compiled files for documentation
|
|
docs/node_modules
|
|
docs/.vuepress/dist/
|