yaserde/.gitignore
Scott Lamb 0660a9e855 ignore a couple extra "target" directories
Crates within a workspace aren't supposed to have their own "target"
directories. But yet these directories appear when I edit files with vim
and YouCompleteMe. Ignoring them makes tools like "rg" more pleasant to
use.
2020-06-19 21:58:05 -07:00

21 lines
619 B
Plaintext

.DS_Store
# Generated by Cargo
# will have compiled files and executables
/target
# YouCompleteMe + its bundled RLS appear to create target directories within
# the crate paths, contrary to the documentation of how workspaces work.
# (As of https://github.com/ycm-core/YouCompleteMe.git f9906f8,
# which pulls in rls from nightly-2020-04-17.)
/yaserde/target
/yaserde_derive/target
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
# More information here http://doc.crates.io/guide.html#cargotoml-vs-cargolock
Cargo.lock
# These are backup files generated by rustfmt
**/*.rs.bk