Skip to content

Instantly share code, notes, and snippets.

@jbjonesjr
Created January 17, 2016 22:45
Show Gist options
  • Save jbjonesjr/f8a6f9ae18f03389d701 to your computer and use it in GitHub Desktop.
Save jbjonesjr/f8a6f9ae18f03389d701 to your computer and use it in GitHub Desktop.
Atom-beautify debugging output

Atom Beautify - Debugging information

The following debugging information was generated by Atom Beautify on Sun Jan 17 2016 17:42:40 GMT-0500 (EST).


Table Of Contents


Platform: darwin

Versions

Atom Version: 1.4.0

Atom Beautify Version: 0.28.21

Original file to be beautified

Original File Path: /Users/jbjonesjr/leankit/LeanKit.IntegrationService/IntegrationService.Targets.GitHub/GitHubConnection_small.cs

Original File Grammar: C#

Original File Language: C#

Language namespace: cs

Supported Beautifiers: Uncrustify

Selected Beautifier: Uncrustify

Original File Contents

//------------------------------------------------------------------------------
// <copyright company="LeanKit Inc.">
//     Copyright (c) LeanKit Inc.  All rights reserved.
// </copyright>
//------------------------------------------------------------------------------

using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using RestSharp;
using ServiceStack.Text;

namespace IntegrationService.Targets.GitHub
{
public abstract class GitHubConnection : IConnection
{
protected IRestClient RestClient;
protected string Host;

protected GitHubConnection()
{
        RestClient = new RestClient();
}

protected GitHubConnection(IRestClient restClient)
{
        RestClient = restClient;
}

/*
        fqdn: target host + protocol as defined on the config screen
        returns whether or not the host was targetting github.com
 */
protected Boolean isGitHubCom(String fqdn){
        return fqdn.includes("github.com") || String.isBlank(fqdn);
}

public ConnectionResult Connect(string host, string user, string password)
{
        Host = host;
        if(isGitHubCom(host)) {
                //using github.com
                RestClient.BaseUrl = new Uri("https://api.github.com");
        }else{
                RestClient.BaseUrl = new Uri(host+"/api/v3");

        }
        RestClient.Authenticator = new HttpBasicAuthenticator(user, password);

        try
        {
                //https://{api_endpoint}/users/[username]/keys
                var request = new RestRequest("/users/" + user +"/keys", Method.GET);
                var githubResp = RestClient.Execute(request);

                if (githubResp.StatusCode != HttpStatusCode.OK)
                {
                        //var serializer = new JsonSerializer<ErrorMessage>();
                        //var errorMessage = serializer.DeserializeFromString(githubResp.Content);
                        return ConnectionResult.FailedToConnect;
                }
        }
        catch (Exception)
        {
                return ConnectionResult.FailedToConnect;
        }

        return ConnectionResult.Success;
}


public abstract List<Project> GetProjects();

}
}

Package Settings

The raw package settings options

{
    "_analyticsUserId": "b1df4854-13b1-4b27-a4fa-eb7a9d050c5b",
    "beautifyEntireFileOnSave": false,
    "analytics": true,
    "_loggerLevel": "warn",
    "muteUnsupportedLanguageErrors": false,
    "muteAllErrors": false,
    "arduino_configPath": "",
    "cs_configPath": "",
    "c_configPath": "",
    "cpp_configPath": "",
    "css_indent_size": 2,
    "css_indent_char": " ",
    "css_selector_separator_newline": false,
    "css_newline_between_rules": false,
    "css_preserve_newlines": false,
    "css_wrap_line_length": 0,
    "css_indent_comments": true,
    "css_force_indentation": false,
    "css_convert_quotes": "none",
    "css_align_assignments": false,
    "css_no_lead_zero": false,
    "css_configPath": "",
    "css_predefinedConfig": "csscomb",
    "d_configPath": "",
    "gherkin_indent_size": 2,
    "gherkin_indent_char": " ",
    "fortran_emacs_path": "",
    "fortran_emacs_script_path": "",
    "html_indent_inner_html": false,
    "html_indent_size": 2,
    "html_indent_char": " ",
    "html_brace_style": "collapse",
    "html_indent_scripts": "normal",
    "html_wrap_line_length": 250,
    "html_wrap_attributes": "auto",
    "html_wrap_attributes_indent_size": 2,
    "html_preserve_newlines": true,
    "html_max_preserve_newlines": 10,
    "html_unformatted": [
        "a",
        "span",
        "img",
        "bdo",
        "em",
        "strong",
        "dfn",
        "code",
        "samp",
        "kbd",
        "var",
        "cite",
        "abbr",
        "acronym",
        "q",
        "sub",
        "sup",
        "tt",
        "i",
        "b",
        "big",
        "small",
        "u",
        "s",
        "strike",
        "font",
        "ins",
        "del",
        "pre",
        "address",
        "dt",
        "h1",
        "h2",
        "h3",
        "h4",
        "h5",
        "h6"
    ],
    "html_end_with_newline": false,
    "html_extra_liners": [
        "head",
        "body",
        "/html"
    ],
    "java_configPath": "",
    "js_indent_size": 2,
    "js_indent_char": " ",
    "js_indent_level": 0,
    "js_indent_with_tabs": false,
    "js_preserve_newlines": true,
    "js_max_preserve_newlines": 10,
    "js_space_in_paren": false,
    "js_jslint_happy": false,
    "js_space_after_anon_function": false,
    "js_brace_style": "collapse",
    "js_break_chained_methods": false,
    "js_keep_array_indentation": false,
    "js_keep_function_indentation": false,
    "js_space_before_conditional": true,
    "js_eval_code": false,
    "js_unescape_strings": false,
    "js_wrap_line_length": 0,
    "js_end_with_newline": false,
    "js_end_with_comma": false,
    "objectivec_configPath": "",
    "pawn_configPath": "",
    "perl_perltidy_profile": "",
    "php_cs_fixer_path": "",
    "php_fixers": "",
    "php_level": "",
    "python_max_line_length": 79,
    "python_indent_size": 4,
    "python_ignore": [
        "E24"
    ],
    "python_sort_imports": false,
    "ruby_indent_size": 2,
    "ruby_rubocop_path": "",
    "ruby_indent_char": " ",
    "rust_rustfmt_path": "",
    "sql_indent_size": 2,
    "sql_keywords": "upper",
    "sql_identifiers": "lower",
    "vala_configPath": "",
    "language_arduino_disabled": false,
    "language_arduino_default_beautifier": "Uncrustify",
    "language_arduino_beautify_on_save": false,
    "language_cs_disabled": false,
    "language_cs_default_beautifier": "Uncrustify",
    "language_cs_beautify_on_save": false,
    "language_c_disabled": false,
    "language_c_default_beautifier": "Uncrustify",
    "language_c_beautify_on_save": false,
    "language_coffeescript_disabled": false,
    "language_coffeescript_default_beautifier": "coffee-fmt",
    "language_coffeescript_beautify_on_save": false,
    "language_cpp_disabled": false,
    "language_cpp_default_beautifier": "Uncrustify",
    "language_cpp_beautify_on_save": false,
    "language_css_disabled": false,
    "language_css_default_beautifier": "JS Beautify",
    "language_css_beautify_on_save": false,
    "language_csv_disabled": false,
    "language_csv_default_beautifier": "Pretty Diff",
    "language_csv_beautify_on_save": false,
    "language_d_disabled": false,
    "language_d_default_beautifier": "Uncrustify",
    "language_d_beautify_on_save": false,
    "language_ejs_disabled": false,
    "language_ejs_default_beautifier": "Pretty Diff",
    "language_ejs_beautify_on_save": false,
    "language_elm_disabled": false,
    "language_elm_default_beautifier": "elm-format",
    "language_elm_beautify_on_save": false,
    "language_erb_disabled": false,
    "language_erb_default_beautifier": "Pretty Diff",
    "language_erb_beautify_on_save": false,
    "language_gherkin_disabled": false,
    "language_gherkin_default_beautifier": "Gherkin formatter",
    "language_gherkin_beautify_on_save": false,
    "language_go_disabled": false,
    "language_go_default_beautifier": "gofmt",
    "language_go_beautify_on_save": false,
    "language_fortran_disabled": false,
    "language_fortran_default_beautifier": "Fortran Beautifier",
    "language_fortran_beautify_on_save": false,
    "language_handlebars_disabled": false,
    "language_handlebars_default_beautifier": "JS Beautify",
    "language_handlebars_beautify_on_save": false,
    "language_haskell_disabled": false,
    "language_haskell_default_beautifier": "stylish-haskell",
    "language_haskell_beautify_on_save": false,
    "language_html_disabled": false,
    "language_html_default_beautifier": "JS Beautify",
    "language_html_beautify_on_save": false,
    "language_java_disabled": false,
    "language_java_default_beautifier": "Uncrustify",
    "language_java_beautify_on_save": false,
    "language_js_disabled": false,
    "language_js_default_beautifier": "JS Beautify",
    "language_js_beautify_on_save": false,
    "language_json_disabled": false,
    "language_json_default_beautifier": "JS Beautify",
    "language_json_beautify_on_save": false,
    "language_jsx_disabled": false,
    "language_jsx_default_beautifier": "Pretty Diff",
    "language_jsx_beautify_on_save": false,
    "language_less_disabled": false,
    "language_less_default_beautifier": "Pretty Diff",
    "language_less_beautify_on_save": false,
    "language_markdown_disabled": false,
    "language_markdown_default_beautifier": "Tidy Markdown",
    "language_markdown_beautify_on_save": false,
    "language_marko_disabled": false,
    "language_marko_default_beautifier": "JS Beautify",
    "language_marko_beautify_on_save": false,
    "language_mustache_disabled": false,
    "language_mustache_default_beautifier": "JS Beautify",
    "language_mustache_beautify_on_save": false,
    "language_objectivec_disabled": false,
    "language_objectivec_default_beautifier": "Uncrustify",
    "language_objectivec_beautify_on_save": false,
    "language_pawn_disabled": false,
    "language_pawn_default_beautifier": "Uncrustify",
    "language_pawn_beautify_on_save": false,
    "language_perl_disabled": false,
    "language_perl_default_beautifier": "Perltidy",
    "language_perl_beautify_on_save": false,
    "language_php_disabled": false,
    "language_php_default_beautifier": "PHP-CS-Fixer",
    "language_php_beautify_on_save": false,
    "language_puppet_disabled": false,
    "language_puppet_default_beautifier": "puppet-lint",
    "language_puppet_beautify_on_save": false,
    "language_python_disabled": false,
    "language_python_default_beautifier": "autopep8",
    "language_python_beautify_on_save": false,
    "language_ruby_disabled": false,
    "language_ruby_default_beautifier": "Rubocop",
    "language_ruby_beautify_on_save": false,
    "language_rust_disabled": false,
    "language_rust_default_beautifier": "rustfmt",
    "language_rust_beautify_on_save": false,
    "language_sass_disabled": false,
    "language_sass_default_beautifier": "Pretty Diff",
    "language_sass_beautify_on_save": false,
    "language_scss_disabled": false,
    "language_scss_default_beautifier": "Pretty Diff",
    "language_scss_beautify_on_save": false,
    "language_spacebars_disabled": false,
    "language_spacebars_default_beautifier": "Pretty Diff",
    "language_spacebars_beautify_on_save": false,
    "language_sql_disabled": false,
    "language_sql_default_beautifier": "sqlformat",
    "language_sql_beautify_on_save": false,
    "language_svg_disabled": false,
    "language_svg_default_beautifier": "Pretty Diff",
    "language_svg_beautify_on_save": false,
    "language_swig_disabled": false,
    "language_swig_default_beautifier": "Pretty Diff",
    "language_swig_beautify_on_save": false,
    "language_tss_disabled": false,
    "language_tss_default_beautifier": "Pretty Diff",
    "language_tss_beautify_on_save": false,
    "language_twig_disabled": false,
    "language_twig_default_beautifier": "Pretty Diff",
    "language_twig_beautify_on_save": false,
    "language_typescript_disabled": false,
    "language_typescript_default_beautifier": "TypeScript Formatter",
    "language_typescript_beautify_on_save": false,
    "language_vala_disabled": false,
    "language_vala_default_beautifier": "Uncrustify",
    "language_vala_beautify_on_save": false,
    "language_visualforce_disabled": false,
    "language_visualforce_default_beautifier": "Pretty Diff",
    "language_visualforce_beautify_on_save": false,
    "language_xml_disabled": false,
    "language_xml_default_beautifier": "Pretty Diff",
    "language_xml_beautify_on_save": false
}

Beautification options

Editor Options: Options from Atom Editor settings

{
    "_default": {
        "indent_size": 2,
        "indent_char": " ",
        "indent_with_tabs": false
    }
}

Config Options: Options from Atom Beautify package settings

{
    "arduino": {
        "configPath": ""
    },
    "cs": {
        "configPath": ""
    },
    "c": {
        "configPath": ""
    },
    "cpp": {
        "configPath": ""
    },
    "css": {
        "indent_size": 2,
        "indent_char": " ",
        "selector_separator_newline": false,
        "newline_between_rules": false,
        "preserve_newlines": false,
        "wrap_line_length": 0,
        "indent_comments": true,
        "force_indentation": false,
        "convert_quotes": "none",
        "align_assignments": false,
        "no_lead_zero": false,
        "configPath": "",
        "predefinedConfig": "csscomb"
    },
    "d": {
        "configPath": ""
    },
    "gherkin": {
        "indent_size": 2,
        "indent_char": " "
    },
    "fortran": {
        "emacs_path": "",
        "emacs_script_path": ""
    },
    "html": {
        "indent_inner_html": false,
        "indent_size": 2,
        "indent_char": " ",
        "brace_style": "collapse",
        "indent_scripts": "normal",
        "wrap_line_length": 250,
        "wrap_attributes": "auto",
        "wrap_attributes_indent_size": 2,
        "preserve_newlines": true,
        "max_preserve_newlines": 10,
        "unformatted": [
            "a",
            "span",
            "img",
            "bdo",
            "em",
            "strong",
            "dfn",
            "code",
            "samp",
            "kbd",
            "var",
            "cite",
            "abbr",
            "acronym",
            "q",
            "sub",
            "sup",
            "tt",
            "i",
            "b",
            "big",
            "small",
            "u",
            "s",
            "strike",
            "font",
            "ins",
            "del",
            "pre",
            "address",
            "dt",
            "h1",
            "h2",
            "h3",
            "h4",
            "h5",
            "h6"
        ],
        "end_with_newline": false,
        "extra_liners": [
            "head",
            "body",
            "/html"
        ]
    },
    "java": {
        "configPath": ""
    },
    "js": {
        "indent_size": 2,
        "indent_char": " ",
        "indent_level": 0,
        "indent_with_tabs": false,
        "preserve_newlines": true,
        "max_preserve_newlines": 10,
        "space_in_paren": false,
        "jslint_happy": false,
        "space_after_anon_function": false,
        "brace_style": "collapse",
        "break_chained_methods": false,
        "keep_array_indentation": false,
        "keep_function_indentation": false,
        "space_before_conditional": true,
        "eval_code": false,
        "unescape_strings": false,
        "wrap_line_length": 0,
        "end_with_newline": false,
        "end_with_comma": false
    },
    "objectivec": {
        "configPath": ""
    },
    "pawn": {
        "configPath": ""
    },
    "perl": {
        "perltidy_profile": ""
    },
    "php": {
        "cs_fixer_path": "",
        "fixers": "",
        "level": ""
    },
    "python": {
        "max_line_length": 79,
        "indent_size": 4,
        "ignore": [
            "E24"
        ],
        "sort_imports": false
    },
    "ruby": {
        "indent_size": 2,
        "rubocop_path": "",
        "indent_char": " "
    },
    "rust": {
        "rustfmt_path": ""
    },
    "sql": {
        "indent_size": 2,
        "keywords": "upper",
        "identifiers": "lower"
    },
    "vala": {
        "configPath": ""
    }
}

Home Options: Options from /Users/jbjonesjr/.jsbeautifyrc

{
    "_default": {}
}

EditorConfig Options: Options from EditorConfig file

{
    "_default": {}
}

Project Options: Options from .jsbeautifyrc files starting from directory /Users/jbjonesjr/leankit/LeanKit.IntegrationService/IntegrationService.Targets.GitHub and going up to root

[
    {
        "_default": {}
    },
    {
        "_default": {}
    },
    {
        "_default": {}
    },
    {
        "_default": {
            "indent_size": 1,
            "indent_char": " ",
            "indent_with_tabs": false
        },
        "cs": {
            "indent_size": 1,
            "indent_char": " ",
            "indent_with_tabs": false
        },
        "java": {
            "indent_size": 4
        }
    },
    {
        "_default": {}
    }
]

Pre-Transformed Options: Combined options before transforming them given a beautifier's specifications

{
    "indent_size": 1,
    "indent_char": " ",
    "indent_with_tabs": false,
    "configPath": ""
}

Final Options

Final combined and transformed options that are used

{
    "indent_size": 1,
    "indent_char": " ",
    "indent_with_tabs": false,
    "configPath": ""
}

Results

Beautified File Contents:

//------------------------------------------------------------------------------
// <copyright company="LeanKit Inc.">
//     Copyright (c) LeanKit Inc.  All rights reserved.
// </copyright>
//------------------------------------------------------------------------------

using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using RestSharp;
using ServiceStack.Text;

namespace IntegrationService.Targets.GitHub
{
public abstract class GitHubConnection : IConnection
{
protected IRestClient RestClient;
protected string Host;

protected GitHubConnection()
{
        RestClient = new RestClient();
}

protected GitHubConnection(IRestClient restClient)
{
        RestClient = restClient;
}

/*
        fqdn: target host + protocol as defined on the config screen
        returns whether or not the host was targetting github.com
 */
protected Boolean isGitHubCom(String fqdn){
        return fqdn.includes("github.com") || String.isBlank(fqdn);
}

public ConnectionResult Connect(string host, string user, string password)
{
        Host = host;
        if(isGitHubCom(host)) {
                //using github.com
                RestClient.BaseUrl = new Uri("https://api.github.com");
        }else{
                RestClient.BaseUrl = new Uri(host+"/api/v3");

        }
        RestClient.Authenticator = new HttpBasicAuthenticator(user, password);

        try
        {
                //https://{api_endpoint}/users/[username]/keys
                var request = new RestRequest("/users/" + user +"/keys", Method.GET);
                var githubResp = RestClient.Execute(request);

                if (githubResp.StatusCode != HttpStatusCode.OK)
                {
                        //var serializer = new JsonSerializer<ErrorMessage>();
                        //var errorMessage = serializer.DeserializeFromString(githubResp.Content);
                        return ConnectionResult.FailedToConnect;
                }
        }
        catch (Exception)
        {
                return ConnectionResult.FailedToConnect;
        }

        return ConnectionResult.Success;
}


public abstract List<Project> GetProjects();

}
}

Original vs. Beautified Diff:

Index: /Users/jbjonesjr/leankit/LeanKit.IntegrationService/IntegrationService.Targets.GitHub/GitHubConnection_small.cs
===================================================================
--- /Users/jbjonesjr/leankit/LeanKit.IntegrationService/IntegrationService.Targets.GitHub/GitHubConnection_small.cs	original
+++ /Users/jbjonesjr/leankit/LeanKit.IntegrationService/IntegrationService.Targets.GitHub/GitHubConnection_small.cs	beautified

Logs

2016-01-17T22:42:40.952Z - info: [beautifiers/index.coffee] beautify //------------------------------------------------------------------------------
// <copyright company="LeanKit Inc.">
//     Copyright (c) LeanKit Inc.  All rights reserved.
// </copyright>
//------------------------------------------------------------------------------

using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using RestSharp;
using ServiceStack.Text;

namespace IntegrationService.Targets.GitHub
{
public abstract class GitHubConnection : IConnection
{
protected IRestClient RestClient;
protected string Host;

protected GitHubConnection()
{
        RestClient = new RestClient();
}

protected GitHubConnection(IRestClient restClient)
{
        RestClient = restClient;
}

/*
        fqdn: target host + protocol as defined on the config screen
        returns whether or not the host was targetting github.com
 */
protected Boolean isGitHubCom(String fqdn){
        return fqdn.includes("github.com") || String.isBlank(fqdn);
}

public ConnectionResult Connect(string host, string user, string password)
{
        Host = host;
        if(isGitHubCom(host)) {
                //using github.com
                RestClient.BaseUrl = new Uri("https://api.github.com");
        }else{
                RestClient.BaseUrl = new Uri(host+"/api/v3");

        }
        RestClient.Authenticator = new HttpBasicAuthenticator(user, password);

        try
        {
                //https://{api_endpoint}/users/[username]/keys
                var request = new RestRequest("/users/" + user +"/keys", Method.GET);
                var githubResp = RestClient.Execute(request);

                if (githubResp.StatusCode != HttpStatusCode.OK)
                {
                        //var serializer = new JsonSerializer<ErrorMessage>();
                        //var errorMessage = serializer.DeserializeFromString(githubResp.Content);
                        return ConnectionResult.FailedToConnect;
                }
        }
        catch (Exception)
        {
                return ConnectionResult.FailedToConnect;
        }

        return ConnectionResult.Success;
}


public abstract List<Project> GetProjects();

}
}
 [ { _default: { indent_size: 2, indent_char: ' ', indent_with_tabs: false } },
  { arduino: { configPath: '' },
    cs: { configPath: '' },
    c: { configPath: '' },
    cpp: { configPath: '' },
    css: 
     { indent_size: 2,
       indent_char: ' ',
       selector_separator_newline: false,
       newline_between_rules: false,
       preserve_newlines: false,
       wrap_line_length: 0,
       indent_comments: true,
       force_indentation: false,
       convert_quotes: 'none',
       align_assignments: false,
       no_lead_zero: false,
       configPath: '',
       predefinedConfig: 'csscomb' },
    d: { configPath: '' },
    gherkin: { indent_size: 2, indent_char: ' ' },
    fortran: { emacs_path: '', emacs_script_path: '' },
    html: 
     { indent_inner_html: false,
       indent_size: 2,
       indent_char: ' ',
       brace_style: 'collapse',
       indent_scripts: 'normal',
       wrap_line_length: 250,
       wrap_attributes: 'auto',
       wrap_attributes_indent_size: 2,
       preserve_newlines: true,
       max_preserve_newlines: 10,
       unformatted: [Object],
       end_with_newline: false,
       extra_liners: [Object] },
    java: { configPath: '' },
    js: 
     { indent_size: 2,
       indent_char: ' ',
       indent_level: 0,
       indent_with_tabs: false,
       preserve_newlines: true,
       max_preserve_newlines: 10,
       space_in_paren: false,
       jslint_happy: false,
       space_after_anon_function: false,
       brace_style: 'collapse',
       break_chained_methods: false,
       keep_array_indentation: false,
       keep_function_indentation: false,
       space_before_conditional: true,
       eval_code: false,
       unescape_strings: false,
       wrap_line_length: 0,
       end_with_newline: false,
       end_with_comma: false },
    objectivec: { configPath: '' },
    pawn: { configPath: '' },
    perl: { perltidy_profile: '' },
    php: { cs_fixer_path: '', fixers: '', level: '' },
    python: 
     { max_line_length: 79,
       indent_size: 4,
       ignore: [Object],
       sort_imports: false },
    ruby: { indent_size: 2, rubocop_path: '', indent_char: ' ' },
    rust: { rustfmt_path: '' },
    sql: { indent_size: 2, keywords: 'upper', identifiers: 'lower' },
    vala: { configPath: '' } },
  { _default: {} },
  { _default: {} },
  { _default: {} },
  { _default: {} },
  { _default: {} },
  { _default: { indent_size: 1, indent_char: ' ', indent_with_tabs: false },
    cs: { indent_size: 1, indent_char: ' ', indent_with_tabs: false },
    java: { indent_size: 4 } },
  { _default: {} } ] C# /Users/jbjonesjr/leankit/LeanKit.IntegrationService/IntegrationService.Targets.GitHub/GitHubConnection_small.cs undefined
2016-01-17T22:42:40.952Z - verbose: [beautifiers/index.coffee]  indent_size=2, indent_char= , indent_with_tabs=false, configPath=, configPath=, configPath=, configPath=, indent_size=2, indent_char= , selector_separator_newline=false, newline_between_rules=false, preserve_newlines=false, wrap_line_length=0, indent_comments=true, force_indentation=false, convert_quotes=none, align_assignments=false, no_lead_zero=false, configPath=, predefinedConfig=csscomb, configPath=, indent_size=2, indent_char= , emacs_path=, emacs_script_path=, indent_inner_html=false, indent_size=2, indent_char= , brace_style=collapse, indent_scripts=normal, wrap_line_length=250, wrap_attributes=auto, wrap_attributes_indent_size=2, preserve_newlines=true, max_preserve_newlines=10, unformatted=[a, span, img, bdo, em, strong, dfn, code, samp, kbd, var, cite, abbr, acronym, q, sub, sup, tt, i, b, big, small, u, s, strike, font, ins, del, pre, address, dt, h1, h2, h3, h4, h5, h6], end_with_newline=false, extra_liners=[head, body, /html], configPath=, indent_size=2, indent_char= , indent_level=0, indent_with_tabs=false, preserve_newlines=true, max_preserve_newlines=10, space_in_paren=false, jslint_happy=false, space_after_anon_function=false, brace_style=collapse, break_chained_methods=false, keep_array_indentation=false, keep_function_indentation=false, space_before_conditional=true, eval_code=false, unescape_strings=false, wrap_line_length=0, end_with_newline=false, end_with_comma=false, configPath=, configPath=, perltidy_profile=, cs_fixer_path=, fixers=, level=, max_line_length=79, indent_size=4, ignore=[E24], sort_imports=false, indent_size=2, rubocop_path=, indent_char= , rustfmt_path=, indent_size=2, keywords=upper, identifiers=lower, configPath=, , , , , , indent_size=1, indent_char= , indent_with_tabs=false, indent_size=1, indent_char= , indent_with_tabs=false, indent_size=4, 
2016-01-17T22:42:40.953Z - verbose: [beautifiers/index.coffee] [ { name: 'C#',
    namespace: 'cs',
    grammars: [ 'C#' ],
    extensions: [ 'cs' ],
    options: { configPath: [Object] },
    beautifiers: [ 'Uncrustify' ] } ] 'C#' 'cs'
2016-01-17T22:42:40.953Z - verbose: [beautifiers/index.coffee] Language C# supported
2016-01-17T22:42:40.954Z - verbose: [beautifiers/index.coffee] getOptions selections [ 'cs' ] indent_size=2, indent_char= , indent_with_tabs=false, configPath=, configPath=, configPath=, configPath=, indent_size=2, indent_char= , selector_separator_newline=false, newline_between_rules=false, preserve_newlines=false, wrap_line_length=0, indent_comments=true, force_indentation=false, convert_quotes=none, align_assignments=false, no_lead_zero=false, configPath=, predefinedConfig=csscomb, configPath=, indent_size=2, indent_char= , emacs_path=, emacs_script_path=, indent_inner_html=false, indent_size=2, indent_char= , brace_style=collapse, indent_scripts=normal, wrap_line_length=250, wrap_attributes=auto, wrap_attributes_indent_size=2, preserve_newlines=true, max_preserve_newlines=10, unformatted=[a, span, img, bdo, em, strong, dfn, code, samp, kbd, var, cite, abbr, acronym, q, sub, sup, tt, i, b, big, small, u, s, strike, font, ins, del, pre, address, dt, h1, h2, h3, h4, h5, h6], end_with_newline=false, extra_liners=[head, body, /html], configPath=, indent_size=2, indent_char= , indent_level=0, indent_with_tabs=false, preserve_newlines=true, max_preserve_newlines=10, space_in_paren=false, jslint_happy=false, space_after_anon_function=false, brace_style=collapse, break_chained_methods=false, keep_array_indentation=false, keep_function_indentation=false, space_before_conditional=true, eval_code=false, unescape_strings=false, wrap_line_length=0, end_with_newline=false, end_with_comma=false, configPath=, configPath=, perltidy_profile=, cs_fixer_path=, fixers=, level=, max_line_length=79, indent_size=4, ignore=[E24], sort_imports=false, indent_size=2, rubocop_path=, indent_char= , rustfmt_path=, indent_size=2, keywords=upper, identifiers=lower, configPath=, , , , , , indent_size=1, indent_char= , indent_with_tabs=false, indent_size=1, indent_char= , indent_with_tabs=false, indent_size=4, 
2016-01-17T22:42:40.955Z - verbose: [beautifiers/index.coffee] true indent_size=2, indent_char= , indent_with_tabs=false
2016-01-17T22:42:40.955Z - verbose: [beautifiers/index.coffee] options cs undefined
2016-01-17T22:42:40.956Z - verbose: [beautifiers/index.coffee] options cs indent_size=2, indent_char= , indent_with_tabs=false
2016-01-17T22:42:40.956Z - verbose: [beautifiers/index.coffee] true configPath=, configPath=, configPath=, configPath=, indent_size=2, indent_char= , selector_separator_newline=false, newline_between_rules=false, preserve_newlines=false, wrap_line_length=0, indent_comments=true, force_indentation=false, convert_quotes=none, align_assignments=false, no_lead_zero=false, configPath=, predefinedConfig=csscomb, configPath=, indent_size=2, indent_char= , emacs_path=, emacs_script_path=, indent_inner_html=false, indent_size=2, indent_char= , brace_style=collapse, indent_scripts=normal, wrap_line_length=250, wrap_attributes=auto, wrap_attributes_indent_size=2, preserve_newlines=true, max_preserve_newlines=10, unformatted=[a, span, img, bdo, em, strong, dfn, code, samp, kbd, var, cite, abbr, acronym, q, sub, sup, tt, i, b, big, small, u, s, strike, font, ins, del, pre, address, dt, h1, h2, h3, h4, h5, h6], end_with_newline=false, extra_liners=[head, body, /html], configPath=, indent_size=2, indent_char= , indent_level=0, indent_with_tabs=false, preserve_newlines=true, max_preserve_newlines=10, space_in_paren=false, jslint_happy=false, space_after_anon_function=false, brace_style=collapse, break_chained_methods=false, keep_array_indentation=false, keep_function_indentation=false, space_before_conditional=true, eval_code=false, unescape_strings=false, wrap_line_length=0, end_with_newline=false, end_with_comma=false, configPath=, configPath=, perltidy_profile=, cs_fixer_path=, fixers=, level=, max_line_length=79, indent_size=4, ignore=[E24], sort_imports=false, indent_size=2, rubocop_path=, indent_char= , rustfmt_path=, indent_size=2, keywords=upper, identifiers=lower, configPath=
2016-01-17T22:42:40.956Z - verbose: [beautifiers/index.coffee] options cs configPath=
2016-01-17T22:42:40.956Z - verbose: [beautifiers/index.coffee] options cs configPath=
2016-01-17T22:42:40.956Z - verbose: [beautifiers/index.coffee] true 
2016-01-17T22:42:40.956Z - verbose: [beautifiers/index.coffee] options cs undefined
2016-01-17T22:42:40.956Z - verbose: [beautifiers/index.coffee] options cs
2016-01-17T22:42:40.956Z - verbose: [beautifiers/index.coffee] true 
2016-01-17T22:42:40.956Z - verbose: [beautifiers/index.coffee] options cs undefined
2016-01-17T22:42:40.957Z - verbose: [beautifiers/index.coffee] options cs
2016-01-17T22:42:40.957Z - verbose: [beautifiers/index.coffee] true 
2016-01-17T22:42:40.957Z - verbose: [beautifiers/index.coffee] options cs undefined
2016-01-17T22:42:40.957Z - verbose: [beautifiers/index.coffee] options cs
2016-01-17T22:42:40.957Z - verbose: [beautifiers/index.coffee] true 
2016-01-17T22:42:40.957Z - verbose: [beautifiers/index.coffee] options cs undefined
2016-01-17T22:42:40.957Z - verbose: [beautifiers/index.coffee] options cs
2016-01-17T22:42:40.957Z - verbose: [beautifiers/index.coffee] true 
2016-01-17T22:42:40.957Z - verbose: [beautifiers/index.coffee] options cs undefined
2016-01-17T22:42:40.957Z - verbose: [beautifiers/index.coffee] options cs
2016-01-17T22:42:40.957Z - verbose: [beautifiers/index.coffee] true indent_size=1, indent_char= , indent_with_tabs=false, indent_size=1, indent_char= , indent_with_tabs=false, indent_size=4
2016-01-17T22:42:40.957Z - verbose: [beautifiers/index.coffee] options cs indent_size=1, indent_char= , indent_with_tabs=false
2016-01-17T22:42:40.957Z - verbose: [beautifiers/index.coffee] options cs indent_size=1, indent_char= , indent_with_tabs=false
2016-01-17T22:42:40.957Z - verbose: [beautifiers/index.coffee] true 
2016-01-17T22:42:40.957Z - verbose: [beautifiers/index.coffee] options cs undefined
2016-01-17T22:42:40.957Z - verbose: [beautifiers/index.coffee] options cs
2016-01-17T22:42:40.958Z - verbose: [beautifiers/index.coffee] C# name=C#, namespace=cs, grammars=[C#], extensions=[cs], title=C# - Config Path, type=string, default=, description=Path to uncrustify config file. i.e. uncrustify.cfg (Supported by Uncrustify), beautifiers=[Uncrustify], key=configPath, $ref=$, beautifiers=[Uncrustify]
2016-01-17T22:42:40.958Z - verbose: [beautifiers/index.coffee] language options: {
    "indent_size": 1,
    "indent_char": " ",
    "indent_with_tabs": false,
    "configPath": ""
}
2016-01-17T22:42:40.958Z - verbose: [beautifiers/index.coffee] C# /Users/jbjonesjr/leankit/LeanKit.IntegrationService/IntegrationService.Targets.GitHub/GitHubConnection_small.cs { indent_size: 1,
  indent_char: ' ',
  indent_with_tabs: false,
  configPath: '' } indent_size=2, indent_char= , indent_with_tabs=false, configPath=, configPath=, configPath=, configPath=, indent_size=2, indent_char= , selector_separator_newline=false, newline_between_rules=false, preserve_newlines=false, wrap_line_length=0, indent_comments=true, force_indentation=false, convert_quotes=none, align_assignments=false, no_lead_zero=false, configPath=, predefinedConfig=csscomb, configPath=, indent_size=2, indent_char= , emacs_path=, emacs_script_path=, indent_inner_html=false, indent_size=2, indent_char= , brace_style=collapse, indent_scripts=normal, wrap_line_length=250, wrap_attributes=auto, wrap_attributes_indent_size=2, preserve_newlines=true, max_preserve_newlines=10, unformatted=[a, span, img, bdo, em, strong, dfn, code, samp, kbd, var, cite, abbr, acronym, q, sub, sup, tt, i, b, big, small, u, s, strike, font, ins, del, pre, address, dt, h1, h2, h3, h4, h5, h6], end_with_newline=false, extra_liners=[head, body, /html], configPath=, indent_size=2, indent_char= , indent_level=0, indent_with_tabs=false, preserve_newlines=true, max_preserve_newlines=10, space_in_paren=false, jslint_happy=false, space_after_anon_function=false, brace_style=collapse, break_chained_methods=false, keep_array_indentation=false, keep_function_indentation=false, space_before_conditional=true, eval_code=false, unescape_strings=false, wrap_line_length=0, end_with_newline=false, end_with_comma=false, configPath=, configPath=, perltidy_profile=, cs_fixer_path=, fixers=, level=, max_line_length=79, indent_size=4, ignore=[E24], sort_imports=false, indent_size=2, rubocop_path=, indent_char= , rustfmt_path=, indent_size=2, keywords=upper, identifiers=lower, configPath=, , , , , , indent_size=1, indent_char= , indent_with_tabs=false, indent_size=1, indent_char= , indent_with_tabs=false, indent_size=4, 
2016-01-17T22:42:40.959Z - verbose: [beautifiers/index.coffee] beautifiers 0=Uncrustify
2016-01-17T22:42:40.959Z - verbose: [beautifiers/index.coffee] beautifier Uncrustify
2016-01-17T22:42:40.967Z - debug: [beautifiers/beautifier.coffee] tempFile input null path=/var/folders/g6/6yl6fc6d4gx4crc_ll0znx140000gn/T/input116017-20813-5ojvvb, fd=52
2016-01-17T22:42:40.967Z - debug: [beautifiers/beautifier.coffee] tempFile output null path=/var/folders/g6/6yl6fc6d4gx4crc_ll0znx140000gn/T/output116017-20813-m115ff, fd=58
2016-01-17T22:42:40.968Z - debug: [beautifiers/beautifier.coffee] exeName, args: uncrustify 0=-c, 1=/var/folders/g6/6yl6fc6d4gx4crc_ll0znx140000gn/T/116017-20813-13avwad.cfg, 2=-f, 3=/var/folders/g6/6yl6fc6d4gx4crc_ll0znx140000gn/T/input116017-20813-5ojvvb, 4=-o, 5=/var/folders/g6/6yl6fc6d4gx4crc_ll0znx140000gn/T/output116017-20813-m115ff, 6=-l, 7=CS
2016-01-17T22:42:41.461Z - debug: [beautifiers/beautifier.coffee] exePath, env: /opt/boxen/homebrew/bin/uncrustify GH_MEMCACHED_PORT=, MANPATH=/opt/boxen/homebrew/share/man:, LDFLAGS=-L/opt/boxen/homebrew/lib, GH_MEMCACHED_URL=, GH_REDIS_PORT=, GH_ELASTICSEARCH_PORT=, GH_HOME=/opt/boxen, GH_ENV_DIR=/opt/boxen/env.d, SHELL=/bin/bash, TMPDIR=/var/folders/g6/6yl6fc6d4gx4crc_ll0znx140000gn/T/, GH_NVM_DIR=, Apple_PubSub_Socket_Render=/private/tmp/com.apple.launchd.Ob2gzecgP2/Render, BOXEN_CONFIG_DIR=/opt/boxen/config, HOMEBREW_ROOT=/opt/boxen/homebrew, BOXEN_HOMEBREW_BOTTLE_URL=https://d3rtm54gh2fsne.cloudfront.net/homebrew, NODENV_ROOT=/opt/boxen/nodenv, ATOM_HOME=/Users/jbjonesjr/.atom, USER=jbjonesjr, BOXEN_SOCKET_DIR=/opt/boxen/data/project-sockets, PHANTOMENV_ROOT=/opt/boxen/phantomenv, RBENV_ROOT=/opt/boxen/rbenv, BOXEN_DOWNLOAD_URL_BASE=https://d3rtm54gh2fsne.cloudfront.net, GH_SRC_DIR=/Users/jbjonesjr/src, BOXEN_GITHUB_LOGIN=jbjonesjr, SSH_AUTH_SOCK=/private/tmp/com.apple.launchd.faMqvUcvWQ/Listeners, GH_LOGIN=jbjonesjr, __CF_USER_TEXT_ENCODING=0x1F5:0x0:0x0, BOXEN_LOG_DIR=/opt/boxen/log, HOMEBREW_CACHE=/opt/boxen/cache/homebrew, GH_SOCKET_DIR=/opt/boxen/data/project-sockets, GOOGLE_API_KEY=AIzaSyAQfxPJiounkhOjODEO5ZieffeBv6yft2Q, PATH=/opt/boxen/chgo/versions/1.3/bin:bin:/opt/boxen/heroku/bin:/opt/boxen/foreman/bin:/opt/boxen/rbenv/shims:/opt/boxen/rbenv/bin:/opt/boxen/ruby-build/bin:/opt/boxen/phantomenv/shims:/opt/boxen/phantomenv/bin:/opt/boxen/nodenv/shims:/opt/boxen/nodenv/bin:/opt/boxen/node-build/bin:/opt/boxen/homebrew/bin:/opt/boxen/homebrew/sbin:/opt/boxen/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/X11/bin, GH_POSTGRESQL_URL=, GH_POSTGRESQL_PORT=, BOXEN_HOME=/opt/boxen, PWD=/, GH_RIAK_PORT=, BOXEN_BIN_DIR=/opt/boxen/bin, GH_SETUP_VERSION=, NODE_PATH=/Applications/Atom.app/Contents/Resources/app.asar/exports, XPC_FLAGS=0x0, NODE_ENV=production, GH_BIN_DIR=/opt/boxen/bin, XPC_SERVICE_NAME=0, SHLVL=1, HOME=/Users/jbjonesjr, GH_CONFIG_DIR=/opt/boxen/config, GOROOT=/opt/boxen/chgo/versions/1.3, BOXEN_ENV_DIR=/opt/boxen/env.d, BUNDLE_JOBS=4, GH_MONGODB_URL=, GH_MONGODB_PORT=, CFLAGS=-I/opt/boxen/homebrew/include, BOXEN_DATA_DIR=/opt/boxen/data, LOGNAME=jbjonesjr, GH_MYSQL_PORT=, GH_DATA_DIR=/opt/boxen/data, GH_MYSQL_SOCKET=, BOXEN_SETUP_VERSION=1aca355, GH_NVM_DEFAULT_VERSION=, GHOME=/opt/boxen, GH_LOG_DIR=/opt/boxen/log, DISPLAY=/private/tmp/com.apple.launchd.O4UPKZtEyt/org.macosforge.xquartz:0, GH_MYSQL_URL=, BOXEN_SRC_DIR=/Users/jbjonesjr/src, SECURITYSESSIONID=186a7, GH_REDIS_URL=, GH_ELASTICSEARCH_URL=, _=/usr/bin/env
2016-01-17T22:42:41.462Z - debug: [beautifiers/beautifier.coffee] spawn /opt/boxen/homebrew/bin/uncrustify 0=-c, 1=/var/folders/g6/6yl6fc6d4gx4crc_ll0znx140000gn/T/116017-20813-13avwad.cfg, 2=-f, 3=/var/folders/g6/6yl6fc6d4gx4crc_ll0znx140000gn/T/input116017-20813-5ojvvb, 4=-o, 5=/var/folders/g6/6yl6fc6d4gx4crc_ll0znx140000gn/T/output116017-20813-m115ff, 6=-l, 7=CS
2016-01-17T22:42:41.474Z - debug: [beautifiers/beautifier.coffee] spawn done 0 Parsing: /var/folders/g6/6yl6fc6d4gx4crc_ll0znx140000gn/T/input116017-20813-5ojvvb as language CS
 
2016-01-17T22:42:41.474Z - verbose: [beautifiers/beautifier.coffee] spawn result 0  Parsing: /var/folders/g6/6yl6fc6d4gx4crc_ll0znx140000gn/T/input116017-20813-5ojvvb as language CS


Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment