danburkert / lmdb-rs

Safe Rust bindings for LMDB
Apache License 2.0
172 stars 87 forks source link

Disable rustfmt by default #14

Closed cmbrandenburg closed 7 years ago

cmbrandenburg commented 7 years ago

This effects issue #11.

This change disables rustfmt from reformatting any code in this project.

This change will cause no changes for people not using rustfmt. Whereas, for people who have their editor set up to automatically reformat Rust code, this change will cause their editor to not make any rustfmt-related changes. I.e., this pull request makes it so that rustfmt-using people will not need to disable rustfmt manually before hacking on this project.

Later, if and when this project switches to using rustfmt, the .rustfmt.toml file would be modified to specify whatever rustfmt settings are desired.

cmbrandenburg commented 7 years ago

This pull request is a workaround until pull request #12 is merged.

danburkert commented 7 years ago

Thanks!