Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Indentation rules #8

Open
mruz opened this issue Nov 12, 2014 · 0 comments
Open

Indentation rules #8

mruz opened this issue Nov 12, 2014 · 0 comments

Comments

@mruz
Copy link

mruz commented Nov 12, 2014

It would be nice to improve code style after run reindent:
comments:

/**
 *
 */
class Test
{

instead of

/**
 *
 */
 class Test
 {

arrays:

return [
     "major": 0
];

instead of

return [
"major": 0
];

switch/case:

switch test {
    case 1:
        let tmp = "test 1";
    break;
}

instead of

switch test {
    case 1:
    let tmp = "test 1";
    break;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant