2
votes
3answers
51 views
How to bulk cleanup imports in Java with eclipse?
On a generated project i 100s of warnings caused by unused imports and the like. Can i bulk cleanup those imports for all files?
2
votes
2answers
171 views
Is there an automatic source code formatter that nicely wraps lines of C/C++?
I use astyle to format my code most of the time, and I love it, but one annoyance is that it can't specify at least a "hint" for max line length. If you have a line of code like:
…
0
votes
0answers
33 views
How to change text color and format code while posting questions here? [closed]
I see it again and again that people here, while asking questions, do it very ably - their code looks like real code - all the tags are in one color and all the commands are in ano …
2
votes
12answers
199 views
Auto formatting code
Our team has recently inherited code which is extremely disorganized.
As a result, my team leader has decided to enforce a policy of auto-formating of code prior to saving a file …
3
votes
4answers
123 views
Should PHP code have spaces before operators?
I've seen a lot of code recently formatted as the following:
A:
if ($var=='test'){
$var=Foo('blah'.$var1);
}else{
// do something
}
Personally I don't like it and would …
4
votes
2answers
74 views
Is it possible to use Visual Studio HTML formatting to format an embedded code block?
I love Visual Studio's ability to auto format (CTRL + K,D). However, in HTML if you have something like:
<h1><%# Eval("SomeField") %></h1>
It gets formatted t …
1
vote
1answer
78 views
How can I strip comments and doc strings from python source code?
Is there a program which I can run like this:
py2py.py < orig.py > smaller.py
Where orig.py contains python source code with comments and doc strings, and smaller.py conta …
1
vote
3answers
82 views
Seeking a C Beautifier that will insert spaces between line elements.
I like spaces between almost all semantic elements in my C code.
Thus I prefer
if ( ( foo = bar ( arg1, arg2, arg3 ) ) == NULL ) {
printf ( "Error 42" );
}
to
if((foo=bar …
2
votes
3answers
76 views
How do I modify Eclipse code formatting?
When I reformat code with Eclipse, it turns method headers like this:
public void myMethod(String param) {
into method headers like this:
public void myMethod(
…
2
votes
7answers
250 views
Online Service to Cleanup HTML Formatting
There are plenty of services online that will color-code and "prettify" your code for you - I'm not interested in that for this question. I've taken over for a previous developer w …
1
vote
2answers
164 views
ReSharper formatting: align equal operands
I like to formatting my code to align right side of equal operands.
Like here:
bool canRead = false;
bool canReadClass = true;
string className = boType.Name;
I've swit …
10
votes
3answers
4k views
Online Tool to Unminify / Decompress JavaScript
Are there any scripts and/or online tools that can reverse the effects of minification similar to how Tidy can clean up horrific HTML?
I'm specifically looking to unminify a minif …
0
votes
3answers
912 views
Is the Open Source Jalopy Eclipse plugin compatible with Ganymede?
After much searching, I found the download for the eclipse version of jalopy. Is this compatible with Eclipse 3.4? It's dated 2006.
I've copied the extracted folder to my plugins …
1
vote
1answer
52 views
Are there any plugins for Visual Studio which automatically formats code how I like?
When I open any code file, whether something i've written or something from another developer, I want it to automatically format it with my preference of bracing, indentation, line …
0
votes
2answers
69 views
Eclipse-like formatting for Visual Studio
Hey all,
Is there a tool for Visual Studio that will automatically format source code (C#) on saving it? This would be useful for my multi-developer team to keep the code looking …
