Tagged Questions

Code formatting is the way to format the source code of programs,using spaces and tabs, improving legibility of source code.

learn more… | top users | synonyms

107
votes
11answers
74k 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 minified JavaScript file, ...
35
votes
8answers
8k views

How to turn off the Eclipse code formatter for certain sections of Java code?

I've got some Java code with SQL statements written as Java strings (please no OR/M flamewars, the embedded SQL is what it is - not my decision). I've broken the SQL statements semantically into ...
34
votes
12answers
23k views

Online code beautifier and formatter

What are the best online code beautifier and formatter out there? I'm not asking for highlighters. Any language will do.
25
votes
4answers
12k views

Eclipse: Can you format code on save?

In Eclipse, under Windows -> Preference -> Java -> Code Style, you can define code templates for comments and code, and you can setup a code formatter. I'm wondering if it is possible in Eclipse to ...
22
votes
3answers
22k views

formatting code within notepad++?

Is there a keyboard shortcut to format code within Notepad++ ? I'm mainly working with HTML, CSS and Python code. For example: <title>{% block title %} {% endblock %}</title> ...
22
votes
22answers
3k views

Why not put all braces inline in C++, C#, Java, javascript, etc.?

Of all the conventions out there for positioning braces in C++, C#, Java, etc., I don't think I've ever seen anyone try to propose something like this: public void SomeMethod(int someInput, string ...
22
votes
6answers
2k views

Lisp Code Formatting

One of the people who took the time to comment on my other question about Clojure/LISP syntax pointed out that I had not written my sample code in the standard LISP way. So he was kind enough to ...
21
votes
2answers
1k views

Is there a Haskell code formatter?

I used to write data A = A { a :: Double } deriving(Eq, Show) but now i prefer data A = A { a :: Double } deriving(Eq, Show) I think the answer will be no, but i ask ...
18
votes
8answers
11k views

Stand-alone Java code formatter/beautifier/pretty printer?

I'm interested in learning about the available choices of high-quality, stand-alone source code formatters for Java. The formatter must be stand-alone, that is, it must support a "batch" mode that is ...
15
votes
2answers
246 views

Emacs Ruby method parameter indentation

I want to make emacs indent ruby method calls like: foo( :blah => 'bar', :shibby => 'baz' ) The closest I can get is: foo( :blah => 'bar', :shibby => 'baz' ) This is using ...
15
votes
2answers
825 views

Is there a way to mark up code to tell ReSharper not to format it?

I quite often use the ReSharper "Clean Up Code" command to format my code to our coding style before checking it into source control. This works well in general, but some bits of code are better ...
14
votes
1answer
242 views

Better indentation in two-mode-mode in Emacs

I am using Emacs to modify code which is interleaving Perl and Verilog. I am using two-mode-mode to switch between the two, which works as expected. The problem is that the perl code is indicated on a ...
14
votes
21answers
843 views

What applications do you know of, that can reformat code?

I am looking for a list of code formatting and prettifying software; I have only found a few topics that all are language specific. This is not about syntax highlighting! If possible, I prefer ...
14
votes
5answers
186 views

Committing when changing source formatting?

Is it accepted practice to commit even when you're just changing things like whitespace, code formatting, etc.?
13
votes
17answers
1k views

C/C++ Checking for NULL pointer

In a recent code review, a contributor is trying to enforce that all NULL checks on pointers be performed in the following manner: int * some_ptr; // ... if( some_ptr == NULL ) { // handle ...
13
votes
8answers
1k views

Indenting #defines

I know that #defines etc. are normally never indented. Why? I'm working in some code at the moment which has a horrible mixture of #defines, #ifdefs, #elses, #endifs, #etc. All these often mixed in ...
12
votes
8answers
4k views

Delphi code formatter

Are there any utilities that reformat Delphi code ? EDIT I am using Delphi 2006 Some feedback Thanks to all that answered this question I have been using the JCF code formatter - it works well ...
12
votes
4answers
924 views

How to blog code at wordpress.com

got a new blog at wordpress few days ago (http://ghads.wordpress.com) and I want to post some code snippets now or then. Is there anyway to make it look like code without paying for extra plugins? ...
11
votes
4answers
931 views

Are there any lint tools for C and C++ that check formatting?

I have a codebase that is touched by many people. While most people make an effort to keep the code nicely formatted (e.g. consistent indentation and use of braces), some don't, and even those that ...
11
votes
4answers
1k views

Smart Indent algorithm documentation?

I'm a big fan of documenting the proper behavior of IDE features that have a subtle but significant impact on coding flow - things like auto-completion selection and commenting/uncommenting code you ...
11
votes
6answers
4k views

How to enforce maximum line length in Emacs?

In Emacs, how can I enforce a maximum line length of, say, 80 characters? I want it to insert proper line breaks in my code, much like fill-paragraph for text, if possible, with the correct insertion ...
10
votes
3answers
844 views

In emacs, how to line up equals signs in a series of initialization statements?

I saw this somewhere, but cannot find it now. Is there a built-in function in emacs, or does someone have elisp, to line up all the equals signs in a series of inititialization statments in cc-mode? ...
9
votes
3answers
251 views

How can I make perltidy work with Method::Signatures?

I'm using Eclipse combined with EPIC to write my Perl code. I configured EPIC to use Perltidy with "-pbp" (perl best practices style) to format my code. This doesn't work well when using ...
9
votes
4answers
819 views

SQL string formatter

Does anyone know of a program, a utility, or some programmatic library, preferably for Linux, that takes an unformatted SQL string and pretty prints it? For example I would like the following select ...
9
votes
14answers
1k views

How should I order the members of a C++ class?

Is it better to have all the private members, then all the protected ones, then all the public ones? Or the reverse? Or should there be multiple private, protected and public labels so that the ...
8
votes
6answers
302 views

What is the proper way to format a multi-line dict in Python?

In Python, I want to write a multi-line dict in my code. There are a couple of ways one could format it. Here are a few that I could think of: mydict = { "key1": 1, "key2": 2, ...
8
votes
4answers
1k views

Format Ruby code in Vim

Just moving over to Vim at the moment. In TextMate I could format code by hitting Cmd-Alt-[. How do I achieve the same in Vim? See the answer below for the command. I found I also needed the ...
8
votes
3answers
2k views

How to create an Intellij and Eclipse compatible code style and code formatting configuration (for java code)?

Few weeks ago I tried Intellij and I found it really awesome. Now, at my project there are two programmers (including me) using Intellij and few other programmers who are going to keep using Eclipse. ...
8
votes
2answers
2k views

LaTeX lstlisting not highlighting keywords when basic style is ttfamily

I'm working on a LaTeX document and using lstlisting to display my Java source code. My setup looks like this: \lstset{ basicstyle=\ttfamily, keywordstyle=\bfseries, language=Java, ...
8
votes
4answers
8k views

Is it possible to auto-format your code in Dreamweaver?

Is it possible to auto-format your code in Dreamweaver like in Visual Studio (ctrl+k+d)
8
votes
4answers
3k views

Displaying code snippets in Sharepoint wiki

I think I already know the answer, but is there a way to get sharepoint to display code snippets in a pre-formatted way? Currently it just looks like text and anything would be better than nothing. ...
7
votes
3answers
46 views

What is a good way to manage cleanup commits in git for a legacy project?

I have a large codebase, where almost every single file isn't aligned properly, has bad spacing between variables or methods, or just generally ugly code. I'd like to make it better as I work with ...
7
votes
1answer
153 views

Custom formatting of LaTeX (beamer) frames in Vim using the gq command

I want to be able to use the gq key combination in Vim to format the text in my Beamer LaTeX slides. For example, I'd like gqap to transform this: \begin{frame}{Some title} \begin{itemize}\item ...
7
votes
1answer
372 views

How do I use code contracts in .NET 4.0 without making my code look cluttered?

I have started using Code Contracts and have found that it makes it difficult to immediately spot the 'guts' of a method. Take this (very simple) example: public static void UserAddNew(string ...
7
votes
4answers
411 views

Is there a way to prevent Visual Studio 2010 formatting C# code in ASP.NET MVC views?

I'd like Visual Studio to continue automatically formatting my .cs files, but is there a way to prevent it auto-formatting C# code in between the <% %> tags in ASP.NET MVC views because it ...
7
votes
4answers
247 views

How to make sure that my SQL code is not a scary mess

SQL seems to be the most neglected language when it comes to formatting nicely and readably... And as SQL statements can be incredibly detailed and complex, it makes it extremely hard to work with. ...
7
votes
8answers
504 views

Is there any tool to standardize format of C++ code?

I'm looking for a tool that works on Windows to reformat some C++ code in my codebase. Essentially, I've got some code I wrote a while ago that I'd like to use, but it doesn't match the style I'm ...
7
votes
1answer
2k views

Eclipse Galileo SQL Editor: is there a code formatter (tidy) function?

I do like the SQL editor now bundled with Eclipse but I can't seem to find a way for it to format my code like eclipse will with my java. Did I miss something, or does anybody have any ...
7
votes
1answer
490 views

ASP.NET MVC View Code Formatting - braces <% } %>

Does anyone know how to configure visual studio to correctly format code segments within a View This annoys the crap outta me!: <select> <% foreach(Height height in ViewData.Model.Heights) ...
7
votes
9answers
9k 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 who loves seperating ...
7
votes
19answers
1k views

How do you format your Compound Statements in Delphi and C#?

As a long time Pascal and Delphi developer, I always line up my begin and ends thus : begin if x = y then begin ... ... end else for i := 0 to 20 do begin ... ...
6
votes
1answer
378 views

Visual studio 2010 + resharper bracket indentation problem

I'm using VS 2010 + resharper, and i'm tired reformatting bracket indentation in code as i want it. As example if i have code like: operators.Keys .ToList() .ForEach(k => filters ...
6
votes
1answer
381 views

Programmatically format and indent automatically generated source from Java

I wrote code generator that creates Java and C++ source code from custom IDL using Antlr. It works perfectly except for the Java code formatting. Currently I use Gnu Indent, but the format that it ...
6
votes
3answers
298 views

A little help F-Sharping up this path-finding code, please

EDIT The bounty is regarding my follow up question re: the generic version of the code. As per my last post in this thread, Thanks, JD Hi all, I've just tried porting some of my C# 2D path-finding ...
6
votes
4answers
721 views

Eclipse formatter settings for the Builder pattern

I'm extremely frustrated with the Eclipse formatting rules for a series of qualified invocations (i.e., the Builder pattern style). For example, here is my preferred formatting for some code that ...
6
votes
3answers
437 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 this way: <h1> ...
6
votes
1answer
874 views

how to align arguments to functions in emacs?

Say if I have the following: func(arg1, arg2, arg3...) func(longargarg1, longerarg2, arg3,...) ... How do I align the arguments so that it's like following? func(arg1 , arg2 , arg3...) ...
6
votes
9answers
234 views

How does the Traditional “HTML is only for content” line of thought handle dynamic formatting?

For so long, I've read and understood the following truths concerning web development: HTML is for content CSS is for presentation JavaScript is for behavior. This is normally all fine and good, ...
6
votes
10answers
1k views

Is there any tool for reformatting C# code?

I am looking for a (preferably) command-line tool that can reformat the C# source code on a directory tree. Ideally, I should be able to customize the formatting. Bonus points if the tool can be run ...
5
votes
3answers
156 views

JSLint, else and Expected exactly one space between '}' and 'else' error

Why JSLint report in code: function cos(a) { var b = 0; if (a) { b = 1; } else { b = 2; } return b; } error: Problem at line 6 character 5: Expected ...

1 2 3 4 5 7