jlint 0.1.1

A command-line linter for Rust projects that flags noisy qualified paths and blank lines between imports
Documentation
# jlint

A small linter that rejects noisy qualified Rust paths and blank lines between imports.

## Usage

Run it from a Rust project directory:

```sh
jlint
```

A directory can be supplied explicitly:

```sh
jlint /path/to/project
```

Use `--no-banner` to suppress the startup message:

```sh
jlint --no-banner
```

The command exits with status 1 when disallowed paths or import spacing violations are found.