Forums : Suggestions for Ohloh 2.0

Dear Open Hub Users,

We’re excited to announce that we will be moving the Open Hub Forum to https://community.synopsys.com/s/black-duck-open-hub. Beginning immediately, users can head over, register, get technical help and discuss issue pertinent to the Open Hub. Registered users can also subscribe to Open Hub announcements here.


On May 1, 2020, we will be freezing https://www.openhub.net/forums and users will not be able to create new discussions. If you have any questions and concerns, please email us at [email protected]

More strict warnings about the code

Obviously not for all languages, but Ohloh should warn about code that:

Mixes syntax styles within a document.

Example, using:

if (true) {

} else {

}

In the same document as

if (true)

{

}

else

{

}

Ohloh should also warning about tabs on empty lines and useless whitespace.

Another suggestion is that Ohloh gives a plus rating if the project includes test cases.

Andrew Fenn over 15 years ago
 

I don’t know if that’s a good idea. Often, projects mix code from different origin, even legacy code. When applied to only one file in question, this however might be a good idea – the package tools we inherited from FreeBSD via OpenBSD actually have one file with THREE different indentation styles in them… and guess what, we do not fix that because it would mean that almost all lines have to be touched, which wrecks stuff like cvs annotate…

mirabilos over 15 years ago