ericphanson / ExplicitImports.jl

Developer tooling for Julia namespace management: detecting implicit imports, improper explicit imports, and improper qualified accesses
https://ericphanson.github.io/ExplicitImports.jl/
MIT License
62 stars 2 forks source link

Combine `using`'s during printing? #26

Closed ericphanson closed 3 months ago

ericphanson commented 3 months ago

We could print

using Foo: x, y, z

rather than

using Foo: x
using Foo: y
using Foo: z

and so forth. This seems like formatting more than anything else, but still convenient. Opens a can of worms in terms of customization, line widths, etc though.

ericphanson commented 3 months ago

Closed by #27