Unverified Commit 8cc8a22d authored by Vasili Novikov's avatar Vasili Novikov
Browse files

Disallow group imports

For example:
```
use futures::{compat::Compat01As03, future::BoxFuture, prelude::*};
```

and
```
use std::{
    fmt::{self, Display},
    result,
};
```
parent ab1325ab
Showing with 1 addition and 0 deletions
+1 -0
......@@ -14,6 +14,7 @@ test:
script:
- cargo fmt --all -- --check
- touch src/main.rs && cargo clippy --all-targets --all-features -- -D warnings
- if grep --recursive '::{' src/; then false; fi
- cargo audit
- cargo test
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment