DATx02-16-14 / Hastings

A project evaluating Haste.App and the suitability of Haskell for the web.
BSD 3-Clause "New" or "Revised" License
4 stars 1 forks source link

Analyse imports #59

Open Kalior opened 8 years ago

Kalior commented 8 years ago

The imports should be analysed to make sure we aren't importing unnecessary much. Imports with just a few methods should hide the rest (just to make it clearer what is imported). Seem reasonable?

Tejpbit commented 8 years ago

Sounds good. I think it would be good to make imports explicitly when dealing with external libraries and implicitly when dealing with our own code base.

In general i think we should be more aware of our coding style. Very often we follow the official style guide by intuition, which is good.

We could adopt some guidelines from Johan Tibells style guide. He looks like a guy who has his Haskell together.