rust-sorty

Build Status

A lint to help with sorting the extern crate, mod and use declarations, according to the style rules. Have a look at the detailed example for a start! I guess it will be very handy for large projects written in Rust (well, at least once!).

And yeah, this should actually be done by rustfmt, but it doesn't have this option for now. So, this plugin would serve until rustfmt becomes intelligent enough to detect the unsorted declarations.

Usage

Add this to your Cargo.toml...

toml [dependencies.sorty] git = "https://github.com/Wafflespeanut/rust-sorty"

... and then to the top of the main module you wanna check,

``` rust

![feature(plugin)]

![plugin(sorty)]

```

(It can show warnings or errors based on your choice, just like any other lint)

``` rust

![deny(unsorted_declarations)] // throw errors! (poor choice for styling lints)

![warn(unsorted_declarations)] // show warnings (default)

![allow(unsorted_declarations)] // stay quiet!

```

Remove it once you've done all the checks, when you'll no longer be needing the plugin!

I was just kidding. I'll be very happy if you just keep it :)

Note:

This is a compiler lint, and it's unstable. So, make sure you're using the latest nightly Rust. Though this lint shows an output of the lexicographically sorted declarations, it follows some rules:

Also, note that there are some stuff that aren't tracked (for now). It includes comments, spaces, renamed use items, etc.