0
votes
0answers
14 views

IDE Code formatting

Code looks like this in my editor: if(waiting_list_flag) { SwitchDialog('RFOWAITLIST'); } else { SwitchDialog('RFO'); } But looks like this in IE Developer Tools Debugger or Firebug or ...
0
votes
1answer
82 views

Java Code beautifier/formatter library with PHP, JavaScript support

I'm searching a java library that formats/beautifies a given source code snippet. The library should support at least PHP and JavaScript source files. The reason why i'm searching this is because the ...
0
votes
1answer
45 views

In NetBeans IDE 6.9.1, can I remove the auto-correct-like functions?

Yes, I know that sounds very very vague, but say I begin typing a program: public class programname and then I hit the return key to insert a { at the far left. The program automatically makes it ...
2
votes
2answers
76 views

Is this an acceptable way to use str.format()?

I've recently decided to start using .format() instead of % (see this question). Instead of the {0}, {1} syntax, I'm wondering if the following is an acceptable use: import os def ...
2
votes
2answers
80 views

Variable declarations - Use modifier 'final' where possible. Yes, and what's up with classes and methods?

I'm finishing a project which has like 100-150 classes and...puff..many, many methods. For the development, I've used the "Use modifier 'final' where possible" save action since the beginning. But ...
4
votes
1answer
132 views

Intellij Scala multiple import style formatting settings

We have a convention to write import akka.actor.{ Actor, Props } instead of import akk.actor.{Actor, Props} like Intellij formatting function is doing now. But i didn't find such an option in ...
0
votes
2answers
205 views

Eclipse Java code formatter

I would like the Eclipse formatter to format Java method declarations in a specific way, is this possible? If not, is there a way to define my own custom formatting? The code should look like this ...
1
vote
1answer
54 views

XML formatting conventions: Why leave a space before />?

I’ve seen it in several places and e.g. the Eclipse XML auto-formatting does it, too: Put a space before the closing /> of an empty element. Having <element attribute="value"/> would be ...
1
vote
2answers
109 views

What is the proper way to structure Scala parser combinator code?

Because the Scala Parsers library requires that you subclass Parsers, which leaves you with a specific Parser implementation in the end, it seems like you can't really separate it out into multiple ...
1
vote
1answer
179 views

Can Eclipse CDT formatter be set to keep one liners when reformatting?

In my include files I'll often have some single line functions, such as: void SetValue(int value) {m_value = value;} int GetValue() const {return m_value;} I like keeping these on one line but ...
0
votes
0answers
129 views

Eclipse Java formatter: Wrapping comma-separated field initializers after comma

I have a code style preference that seems to me as though it would be somewhat common, but I see no way to configure it in Eclipse's Java formatter and my searches haven't found anyone else mentioning ...
6
votes
1answer
591 views

Comma-first JS formatter

Do you know of a JS formatter that will support the comma-first coding style? var a = 'ape' , b = 'bat' , c = 'cat' , d = 'dog' , e = 'elf' , f = 'fly' , g = 'gnu' , h = 'hat' , i = ...
1
vote
3answers
164 views

Make sense to use code formatter template arbitrary in team? [closed]

I am working on a Java project, about ten developers in team. And we all use Eclipse as IDE. To make source code in more consistent style in team, I am wondering if it makes sense to use code ...
0
votes
2answers
167 views

What's a good XML format to store a directed graph?

The graph is composed of many vertices each of which have some properties, and directed edges between two vertices. What's a good XML format to store such? <graph> <vertices> ...
1
vote
3answers
149 views

Spaces in Python coding style

Python tutorial says "Use spaces around operators and after commas, but not directly inside bracketing constructs: a = f(1, 2) + g(3, 4)." What does "not directly inside bracketing constructs" exactly ...
0
votes
1answer
77 views

Is it possible to set line limitation in the AStyle

I am using AStyle to format C or cpp source codes. I am just wondering it is possible to set line limitation in the AStyle?
1
vote
1answer
67 views

Format code on Build

I'm working on a group project, and we've been having some merge conflicts. We have a convention to use tabs instead of spaces, but spaces keep leaking in, causing what KDiff calls "whitespace ...
0
votes
3answers
696 views

Code formatter/beautifier application

I found some very useful web services which make the messy code readable. Sharing some of them with you JS beautifier PHP formatter I'd like my PHP and JS code to be formatted by Dreamweaver much ...
1
vote
3answers
314 views

What is the “Ruby way” to align variable assignments? (code style question)

Say i have this untainted code: some_var = Hash.new some_var[:name] = "blah" some_var[:address] = "101 blahblah lane" another = "Olly olly oxen free!" What is the ruby way of making it pretty? ...
0
votes
1answer
35 views

What is the best formatting for operator placements on new lines?

For operations on multiple lines, most of the time, i see and use this formatting: result = object->someValue() + variable - function(array) * (arg1 + arg2 + arg3 + arg4); But i ...
6
votes
1answer
374 views

How to set indentation of array's elements in Java Script source code in Eclipse?

How can I configure formatting options in Eclipse for Java Script source code so that having this code: var o = { items: [{ xtype: 'grid', columns: [<cursor here>{header: ...
0
votes
3answers
153 views

coding style [braces] [closed]

I always liked the braces on new line coding style. I think it puts related of code [loops, if else, catch etc] in one block and clearly visible and helps break a method in blocks etc. for ex: ...
5
votes
4answers
135 views

Why extra spaces and linebreaks in queries are bad?

I see, from time to time, that people say that SQL query that is sent to a server from client application should not contain any extra linebreaks or spaces. One of the reason I've heard is "why waste ...
4
votes
1answer
446 views

Automatic tool for styling c++ source code to a specific convention

Alot of code at work is inconsistent throughout, and I want to reformat all the code so that it complies to one coding convention. I've found enough tools that reformat spaces, braces, pointer ...
9
votes
2answers
2k views

Show 80-character margin line in TextMate

Is it possible to display a right-margin line at 80 characters in TextMate? (i.e. the right-margin line in eclipse, gedit, etc.) If so, how can I configure that?
0
votes
2answers
74 views

A good way to format a list of variables and their values in a single line

From time to time a developer has some parameters or variables that s/he wants to write to a log line, console output, or in my case database view. How would you format such a string to be the most ...
10
votes
4answers
7k views

How to generically format a boolean to a Yes/No string?

I would like to display Yes/No in different languages according to some boolean variable. Is there a generic way to format it according to the locale passed to it? If there isn't, what is the standard ...
0
votes
1answer
101 views

What are some good Code Formats?

Firstly, I am aware of this question: Are there standard formats for comments within code? But it didn't answer mine. Whenever I write code, I always try to form a habit of ensuring that the comments ...
2
votes
3answers
154 views

Python style question: Support class as inner class?

I like to use the structures built into the language to organize my code. But there is one situation where I can't stay consistent, simply because I don't see a definitive best way of doing it. It's ...
4
votes
1answer
1k views

Using AStyle in Vim

I am trying to get AStyle working with Vim so that I can use the "=" key to re-indent various sections of code. For example, I'd like to be able to type my usual =iB to indent the current block of ...
0
votes
2answers
191 views

Eclipse format question

When I format in eclipse long lines become from this : String str = instance.someMethod("jhdajhajsha").someOtherMethod("sakjsaksja"); to this : String str = instance.someMethod("jhdajhajsha") ...
1
vote
2answers
655 views

PHP: Using Proper Indentation with Heredocs

I just read thought php doucmentation for heredocs but I did not see any way to intent the code properly. Is this possible in php? Right now I am doing this, but this is bad for readability. ...
0
votes
1answer
153 views

Branding SharePoint Search Result

In my SharePoint site I have a list wich has a column that contains rich text in it. (i.e text with bold, color and italic style). Now when user perform search, If the search key word match with the ...
1
vote
1answer
499 views

Datagridview to Clipboard with formatting

For a VB.Net application needing to output the data to clipboard, with formatting, I am in need of some help. For now, I am exporting data from the clipboard using MainView.ClipboardCopyMode = ...
-1
votes
12answers
237 views

Should it be if() or if ()? [closed]

When you have line of code with a parenthetical statement, do you include a space before the parenthetical? For example, should it be if() or if () Thanks in advance!
5
votes
6answers
477 views

Java Code Formating

I'm using FreeMarker to generate java code, but as most of it is dynamically generated it's difficult to control the code formation. I want to get code well formatted. Does anyone knows a lib or ...
4
votes
1answer
1k views

PHP beautifiers (libraries for formatting code)

Previously, my intention was to ask: Do you know any open source SQL formatter/beautifier library for PHP projects? But I think, I'd better ask: Which code formatting libraries written in PHP are ...
27
votes
6answers
3k views

Why use semicolon?

Are there any reasons, apart from subjective visual perception and cases where you have multiple statements on the same line, to use semicolon at the end of statements in Javascript? It looks like ...
4
votes
4answers
349 views

Coding style - keep parentheses on the same line or new line? [closed]

Suppose you are calling a function, where there's clearly a need to break down the statement into few lines, for readability's sake. However there are at least two way to do it: Would you do this: ...
5
votes
5answers
1k views

Formatting sentences in a string using C#

I have a string with multiple sentences. How do I Capitalize the first letter of first word in every sentence. Something like paragraph formatting in word. eg ."this is some code. the code is in C#. ...
3
votes
2answers
147 views

CSS Selector Style

I didn't see anything on here about it with a quick search, if there is let me know. Here is an example of a CSS selector I'd write. div#container div#h h1 { /* styles */ } div#container div#h ...
1
vote
13answers
647 views

Long code blocks inside if statements or for loops

This is a cross language question on coding style. I have to work with a lot of code that has very long code blocks, sometimes hundreds of lines, inside if statements or for loops. The code is ...
1
vote
6answers
352 views

Is there a standard for code margins?

Similar Questions While coding, how many columns do you format for? What is a sensible maximum number of characters per line of code? Do people still live by the 80 column rule? The 80 ...
8
votes
1answer
1k views

Fixing indentation when object initializers have been used

Is there a tool that will auto-indent code that uses object initializers in the following manner: SomeType someType = new SomeType { Prop1 = "prop 1 value", Prop2 = "prop 2 value", Things ...
2
votes
1answer
1k views

Automatic column align along colons in Xcode and Objective C?

Is there a macro or preference setting that would automatically align method parameters along the columns and colons in Xcode? Basically a shortcut to turn this: [object methodWithParam:theParam ...
2
votes
5answers
9k views

AutoIndent in Eclipse possible?

I have been wracking my brain trying to figure this out. For the first time I used jEdit the other day and I was pleasantly surprised that it auto indented my code (meaning that I'd put in the ...
1
vote
4answers
465 views

Applying html formating in label control

The html formating is applied great in this case. The Surname is displayed with size 5. lblWelcome.Text = "Welcome:<font size=''5''>" & txtSurname.Text & "</font>" Why the html ...
9
votes
6answers
2k views

Formatting associative array declaration

When declaring an associative array, how do you handle the indentation of the elements of the array? I've seen a number of different styles (PHP syntax, since that's what I've been in lately). This ...
7
votes
6answers
2k views

Is it possible to customize the indent style of XCode?

For example, I'd like to not indent namespaces in C++ code, but the prefpane doesn't seem to have any place to make a decision of this granularity. Is there some hidden config file or something? Or am ...
5
votes
6answers
961 views

Reformat C++ braces without changing indentation?

We would like to make our C++ brace style more consistent. Right now, our code contains a mix of: if (cond) { // ... } else { // ... } ...and: if (cond) { // ... } else { // ...

1 2