Skip to content

Instantly share code, notes, and snippets.

@jmbldwn
Created November 24, 2015 17:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jmbldwn/37bb33a4dd2f3dd3faad to your computer and use it in GitHub Desktop.
Save jmbldwn/37bb33a4dd2f3dd3faad to your computer and use it in GitHub Desktop.

Atom Beautify - Debugging information

The following debugging information was generated by Atom Beautify on Tue Nov 24 2015 09:38:20 GMT-0800 (PST).


Platform: darwin

Versions

Atom Version: 1.2.3

Atom Beautify Version: 0.28.19

Original file to be beautified

Original File Path: /Users/jim/development/test/test.cpp

Original File Grammar: C++

Original File Language: C++

Original File Contents:

#include <nan.h>
#include "Teeth.h"
#include "EncodeWorker.h"
#include "Image.h"

using namespace v8;

Persistent<Function> Teeth::constructor;

Teeth::Teeth()
{

}

Teeth::~Teeth()
{

}

Teeth::New()
{
    NanScope();

    if (args.IsConstructCall())
    {
        // Invoked as constructor: `new Teeth(...)`
        //        double value = args[0]->IsUndefined() ? 0 : args[0]->NumberValue();
        Teeth *teeth = new Teeth();
        teeth->Wrap(args.This());
        teeth->x264 = new X264Encoder();
        NanReturnValue(args.This());
    }
    else
    {
        // Invoked as plain function `MyObject(...)`, turn into construct call.
        const int argc = 0;
        Local<Value> argv[argc];// = { args[0] };
        Local<Function> cons = NanNew<Function>(constructor);
        NanReturnValue(cons->NewInstance(argc, argv));
    }
}

Beautification options

Editor Options: Options from Atom Editor settings

{
    "_default": {
        "indent_size": 4,
        "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": 1,
        "indent_char": "\t",
        "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": 1,
        "indent_char": "\t"
    },
    "fortran": {
        "emacs_path": "",
        "emacs_script_path": ""
    },
    "html": {
        "indent_inner_html": false,
        "indent_size": 1,
        "indent_char": "\t",
        "brace_style": "collapse",
        "indent_scripts": "normal",
        "wrap_line_length": 250,
        "wrap_attributes": "auto",
        "wrap_attributes_indent_size": 1,
        "preserve_newlines": true,
        "max_preserve_newlines": 10,
        "unformatted": [
            "a",
            "sub",
            "sup",
            "b",
            "i",
            "u"
        ],
        "end_with_newline": false,
        "extra_liners": [
            "head",
            "body",
            "/html"
        ]
    },
    "java": {
        "configPath": ""
    },
    "js": {
        "indent_size": 1,
        "indent_char": "\t",
        "indent_level": 0,
        "indent_with_tabs": true,
        "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"
        ]
    },
    "ruby": {
        "indent_size": 1,
        "indent_char": "\t"
    },
    "rust": {
        "rustfmt_path": ""
    },
    "sql": {
        "indent_size": 1,
        "keywords": "upper",
        "identifiers": "lower"
    },
    "vala": {
        "configPath": ""
    }
}

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

{
    "_default": {}
}

EditorConfig Options: Options from EditorConfig file

{
    "_default": {}
}

Project Options: Options from .jsbeautifyrc files starting from directory /Users/jim/development/test and going up to root

[
    {
        "_default": {}
    },
    {
        "_default": {}
    },
    {
        "_default": {}
    },
    {
        "_default": {}
    }
]

Final Options: Final combined options that are used

{
    "indent_size": 4,
    "indent_char": " ",
    "indent_with_tabs": false
}

Package Settings: The raw package settings options

{
    "_analyticsUserId": "656f7d41-2d40-4ad9-92cc-6294167ae9f9",
    "analytics": true,
    "_loggerLevel": "warn",
    "beautifyEntireFileOnSave": true,
    "muteUnsupportedLanguageErrors": false,
    "muteAllErrors": false,
    "arduino_configPath": "",
    "cs_configPath": "",
    "c_configPath": "",
    "cpp_configPath": "",
    "css_indent_size": 1,
    "css_indent_char": "\t",
    "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": 1,
    "gherkin_indent_char": "\t",
    "fortran_emacs_path": "",
    "fortran_emacs_script_path": "",
    "html_indent_inner_html": false,
    "html_indent_size": 1,
    "html_indent_char": "\t",
    "html_brace_style": "collapse",
    "html_indent_scripts": "normal",
    "html_wrap_line_length": 250,
    "html_wrap_attributes": "auto",
    "html_wrap_attributes_indent_size": 1,
    "html_preserve_newlines": true,
    "html_max_preserve_newlines": 10,
    "html_unformatted": [
        "a",
        "sub",
        "sup",
        "b",
        "i",
        "u"
    ],
    "html_end_with_newline": false,
    "html_extra_liners": [
        "head",
        "body",
        "/html"
    ],
    "java_configPath": "",
    "js_indent_size": 1,
    "js_indent_char": "\t",
    "js_indent_level": 0,
    "js_indent_with_tabs": true,
    "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"
    ],
    "ruby_indent_size": 1,
    "ruby_indent_char": "\t",
    "rust_rustfmt_path": "",
    "sql_indent_size": 1,
    "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_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
}

Results

Beautified File Contents:

#include <nan.h>
#include "Teeth.h"
#include "EncodeWorker.h"
#include "Image.h"

using namespace v8;

Persistent<Function> Teeth::constructor;

Teeth::Teeth()
{

}

Teeth::~Teeth()
{

}

Teeth::New()
{
        NanScope();

        if (args.IsConstructCall())
        {
                // Invoked as constructor: `new Teeth(...)`
                //        double value = args[0]->IsUndefined() ? 0 : args[0]->NumberValue();
                Teeth *teeth = new Teeth();
                teeth->Wrap(args.This());
                teeth->x264 = new X264Encoder();
                NanReturnValue(args.This());
        }
        else
        {
                // Invoked as plain function `MyObject(...)`, turn into construct call.
                const int argc = 0;
                Local<Value> argv[argc];// = { args[0] };
                Local<Function> cons = NanNew<Function>(constructor);
                NanReturnValue(cons->NewInstance(argc, argv));
        }
}

Original vs. Beautified Diff:

Index: /Users/jim/development/test/test.cpp
===================================================================
--- /Users/jim/development/test/test.cpp	original
+++ /Users/jim/development/test/test.cpp	beautified
@@ -18,24 +18,24 @@
 }
 
 Teeth::New()
 {
-    NanScope();
+        NanScope();
 
-    if (args.IsConstructCall())
-    {
-        // Invoked as constructor: `new Teeth(...)`
-        //        double value = args[0]->IsUndefined() ? 0 : args[0]->NumberValue();
-        Teeth *teeth = new Teeth();
-        teeth->Wrap(args.This());
-        teeth->x264 = new X264Encoder();
-        NanReturnValue(args.This());
-    }
-    else
-    {
-        // Invoked as plain function `MyObject(...)`, turn into construct call.
-        const int argc = 0;
-        Local<Value> argv[argc];// = { args[0] };
-        Local<Function> cons = NanNew<Function>(constructor);
-        NanReturnValue(cons->NewInstance(argc, argv));
-    }
+        if (args.IsConstructCall())
+        {
+                // Invoked as constructor: `new Teeth(...)`
+                //        double value = args[0]->IsUndefined() ? 0 : args[0]->NumberValue();
+                Teeth *teeth = new Teeth();
+                teeth->Wrap(args.This());
+                teeth->x264 = new X264Encoder();
+                NanReturnValue(args.This());
+        }
+        else
+        {
+                // Invoked as plain function `MyObject(...)`, turn into construct call.
+                const int argc = 0;
+                Local<Value> argv[argc];// = { args[0] };
+                Local<Function> cons = NanNew<Function>(constructor);
+                NanReturnValue(cons->NewInstance(argc, argv));
+        }
 }

Logs:

2015-11-24T17:38:20.135Z - info: [beautifiers/index.coffee] beautify #include <nan.h>
#include "Teeth.h"
#include "EncodeWorker.h"
#include "Image.h"

using namespace v8;

Persistent<Function> Teeth::constructor;

Teeth::Teeth()
{

}

Teeth::~Teeth()
{

}

Teeth::New()
{
    NanScope();

    if (args.IsConstructCall())
    {
        // Invoked as constructor: `new Teeth(...)`
        //        double value = args[0]->IsUndefined() ? 0 : args[0]->NumberValue();
        Teeth *teeth = new Teeth();
        teeth->Wrap(args.This());
        teeth->x264 = new X264Encoder();
        NanReturnValue(args.This());
    }
    else
    {
        // Invoked as plain function `MyObject(...)`, turn into construct call.
        const int argc = 0;
        Local<Value> argv[argc];// = { args[0] };
        Local<Function> cons = NanNew<Function>(constructor);
        NanReturnValue(cons->NewInstance(argc, argv));
    }
}
 [ { _default: { indent_size: 4, indent_char: ' ', indent_with_tabs: false } },
  { arduino: { configPath: '' },
    cs: { configPath: '' },
    c: { configPath: '' },
    cpp: { configPath: '' },
    css: 
     { indent_size: 1,
       indent_char: '\t',
       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: 1, indent_char: '\t' },
    fortran: { emacs_path: '', emacs_script_path: '' },
    html: 
     { indent_inner_html: false,
       indent_size: 1,
       indent_char: '\t',
       brace_style: 'collapse',
       indent_scripts: 'normal',
       wrap_line_length: 250,
       wrap_attributes: 'auto',
       wrap_attributes_indent_size: 1,
       preserve_newlines: true,
       max_preserve_newlines: 10,
       unformatted: [Object],
       end_with_newline: false,
       extra_liners: [Object] },
    java: { configPath: '' },
    js: 
     { indent_size: 1,
       indent_char: '\t',
       indent_level: 0,
       indent_with_tabs: true,
       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] },
    ruby: { indent_size: 1, indent_char: '\t' },
    rust: { rustfmt_path: '' },
    sql: { indent_size: 1, keywords: 'upper', identifiers: 'lower' },
    vala: { configPath: '' } },
  { _default: {} },
  { _default: {} },
  { _default: {} },
  { _default: {} },
  { _default: {} },
  { _default: {} } ] C++ /Users/jim/development/test/test.cpp undefined
2015-11-24T17:38:20.135Z - verbose: [beautifiers/index.coffee]  indent_size=4, indent_char= , indent_with_tabs=false, configPath=, configPath=, configPath=, configPath=, indent_size=1, 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=1, indent_char=	, emacs_path=, emacs_script_path=, indent_inner_html=false, indent_size=1, indent_char=	, brace_style=collapse, indent_scripts=normal, wrap_line_length=250, wrap_attributes=auto, wrap_attributes_indent_size=1, preserve_newlines=true, max_preserve_newlines=10, unformatted=[a, sub, sup, b, i, u], end_with_newline=false, extra_liners=[head, body, /html], configPath=, indent_size=1, indent_char=	, indent_level=0, indent_with_tabs=true, 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], indent_size=1, indent_char=	, rustfmt_path=, indent_size=1, keywords=upper, identifiers=lower, configPath=, , , , , , 
2015-11-24T17:38:20.136Z - verbose: [beautifiers/index.coffee] [ { name: 'C++',
    namespace: 'cpp',
    grammars: [ 'C++' ],
    extensions: [ 'h', 'hh', 'cc', 'cpp', 'cxx', 'C', 'c++', 'hpp', 'hxx', 'h++' ],
    options: { configPath: [Object] },
    beautifiers: [ 'Uncrustify', 'clang-format' ] } ] 'C++' 'cpp'
2015-11-24T17:38:20.136Z - verbose: [beautifiers/index.coffee] Language C++ supported
2015-11-24T17:38:20.136Z - verbose: [beautifiers/index.coffee] getOptions selections [ 'cpp' ] indent_size=4, indent_char= , indent_with_tabs=false, configPath=, configPath=, configPath=, configPath=, indent_size=1, 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=1, indent_char=	, emacs_path=, emacs_script_path=, indent_inner_html=false, indent_size=1, indent_char=	, brace_style=collapse, indent_scripts=normal, wrap_line_length=250, wrap_attributes=auto, wrap_attributes_indent_size=1, preserve_newlines=true, max_preserve_newlines=10, unformatted=[a, sub, sup, b, i, u], end_with_newline=false, extra_liners=[head, body, /html], configPath=, indent_size=1, indent_char=	, indent_level=0, indent_with_tabs=true, 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], indent_size=1, indent_char=	, rustfmt_path=, indent_size=1, keywords=upper, identifiers=lower, configPath=, , , , , , 
2015-11-24T17:38:20.137Z - verbose: [beautifiers/index.coffee] true indent_size=4, indent_char= , indent_with_tabs=false
2015-11-24T17:38:20.137Z - verbose: [beautifiers/index.coffee] options cpp undefined
2015-11-24T17:38:20.138Z - verbose: [beautifiers/index.coffee] options cpp indent_size=4, indent_char= , indent_with_tabs=false
2015-11-24T17:38:20.138Z - verbose: [beautifiers/index.coffee] true configPath=, configPath=, configPath=, configPath=, indent_size=1, 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=1, indent_char=	, emacs_path=, emacs_script_path=, indent_inner_html=false, indent_size=1, indent_char=	, brace_style=collapse, indent_scripts=normal, wrap_line_length=250, wrap_attributes=auto, wrap_attributes_indent_size=1, preserve_newlines=true, max_preserve_newlines=10, unformatted=[a, sub, sup, b, i, u], end_with_newline=false, extra_liners=[head, body, /html], configPath=, indent_size=1, indent_char=	, indent_level=0, indent_with_tabs=true, 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], indent_size=1, indent_char=	, rustfmt_path=, indent_size=1, keywords=upper, identifiers=lower, configPath=
2015-11-24T17:38:20.138Z - verbose: [beautifiers/index.coffee] options cpp configPath=
2015-11-24T17:38:20.138Z - verbose: [beautifiers/index.coffee] options cpp configPath=
2015-11-24T17:38:20.138Z - verbose: [beautifiers/index.coffee] true 
2015-11-24T17:38:20.138Z - verbose: [beautifiers/index.coffee] options cpp undefined
2015-11-24T17:38:20.138Z - verbose: [beautifiers/index.coffee] options cpp
2015-11-24T17:38:20.139Z - verbose: [beautifiers/index.coffee] true 
2015-11-24T17:38:20.139Z - verbose: [beautifiers/index.coffee] options cpp undefined
2015-11-24T17:38:20.139Z - verbose: [beautifiers/index.coffee] options cpp
2015-11-24T17:38:20.139Z - verbose: [beautifiers/index.coffee] true 
2015-11-24T17:38:20.139Z - verbose: [beautifiers/index.coffee] options cpp undefined
2015-11-24T17:38:20.139Z - verbose: [beautifiers/index.coffee] options cpp
2015-11-24T17:38:20.139Z - verbose: [beautifiers/index.coffee] true 
2015-11-24T17:38:20.139Z - verbose: [beautifiers/index.coffee] options cpp undefined
2015-11-24T17:38:20.139Z - verbose: [beautifiers/index.coffee] options cpp
2015-11-24T17:38:20.139Z - verbose: [beautifiers/index.coffee] true 
2015-11-24T17:38:20.139Z - verbose: [beautifiers/index.coffee] options cpp undefined
2015-11-24T17:38:20.139Z - verbose: [beautifiers/index.coffee] options cpp
2015-11-24T17:38:20.139Z - verbose: [beautifiers/index.coffee] true 
2015-11-24T17:38:20.139Z - verbose: [beautifiers/index.coffee] options cpp undefined
2015-11-24T17:38:20.139Z - verbose: [beautifiers/index.coffee] options cpp
2015-11-24T17:38:20.140Z - verbose: [beautifiers/index.coffee] C++ name=C++, namespace=cpp, grammars=[C++], extensions=[h, hh, cc, cpp, cxx, C, c++, hpp, hxx, h++], 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, clang-format]
2015-11-24T17:38:20.140Z - verbose: [beautifiers/index.coffee] options indent_size=4, indent_char= , indent_with_tabs=false, configPath=
2015-11-24T17:38:20.140Z - verbose: [beautifiers/index.coffee] beautifiers 0=Uncrustify, 1=clang-format
2015-11-24T17:38:20.140Z - verbose: [beautifiers/index.coffee] C++ /Users/jim/development/test/test.cpp { indent_size: 4,
  indent_char: ' ',
  indent_with_tabs: false,
  configPath: '' } indent_size=4, indent_char= , indent_with_tabs=false, configPath=, configPath=, configPath=, configPath=, indent_size=1, 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=1, indent_char=	, emacs_path=, emacs_script_path=, indent_inner_html=false, indent_size=1, indent_char=	, brace_style=collapse, indent_scripts=normal, wrap_line_length=250, wrap_attributes=auto, wrap_attributes_indent_size=1, preserve_newlines=true, max_preserve_newlines=10, unformatted=[a, sub, sup, b, i, u], end_with_newline=false, extra_liners=[head, body, /html], configPath=, indent_size=1, indent_char=	, indent_level=0, indent_with_tabs=true, 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], indent_size=1, indent_char=	, rustfmt_path=, indent_size=1, keywords=upper, identifiers=lower, configPath=, , , , , , 
2015-11-24T17:38:20.141Z - verbose: [beautifiers/index.coffee] beautifier Uncrustify
2015-11-24T17:38:20.148Z - debug: [beautifiers/beautifier.coffee] tempFile input null path=/var/folders/zq/zpn_lntn17q7khffvwlmpzq00000gn/T/input1151024-27728-ztx4cs, fd=53
2015-11-24T17:38:20.148Z - debug: [beautifiers/beautifier.coffee] tempFile output null path=/var/folders/zq/zpn_lntn17q7khffvwlmpzq00000gn/T/output1151024-27728-i4hg3a, fd=54
2015-11-24T17:38:20.149Z - debug: [beautifiers/beautifier.coffee] exeName, args: uncrustify 0=-c, 1=/var/folders/zq/zpn_lntn17q7khffvwlmpzq00000gn/T/1151024-27728-1epn64a.cfg, 2=-f, 3=/var/folders/zq/zpn_lntn17q7khffvwlmpzq00000gn/T/input1151024-27728-ztx4cs, 4=-o, 5=/var/folders/zq/zpn_lntn17q7khffvwlmpzq00000gn/T/output1151024-27728-i4hg3a, 6=-l, 7=CPP
2015-11-24T17:38:21.167Z - debug: [beautifiers/beautifier.coffee] exePath, env: /usr/local/bin/uncrustify NVM_RC_VERSION=, AUTOJUMP_ERROR_PATH=/Users/jim/Library/autojump/errors.log, TERM_PROGRAM=iTerm.app, AUTOJUMP_SOURCED=1, TERM=xterm-256color, SHELL=/bin/bash, CLICOLOR=1, TMPDIR=/var/folders/zq/zpn_lntn17q7khffvwlmpzq00000gn/T/, DOCKER_HOST=tcp://192.168.59.103:2376, Apple_PubSub_Socket_Render=/private/tmp/com.apple.launchd.muKzsGGkNc/Render, ATOM_HOME=/Users/jim/.atom, USER=jim, NVM_DIR=/usr/local/opt/nvm, SSH_AUTH_SOCK=/private/tmp/com.apple.launchd.FG6xGUlUsK/Listeners, __CF_USER_TEXT_ENCODING=0x1F5:0x0:0x0, DOCKER_TLS_VERIFY=1, LSCOLORS=ExFxCxDxBxegedabagacad, GOOGLE_API_KEY=AIzaSyAQfxPJiounkhOjODEO5ZieffeBv6yft2Q, PATH=/Users/jim/.node/bin:/usr/local/heroku/bin:~/development/android-sdk-macosx/tools:/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/X11/bin:/usr/local/CrossPack-AVR/bin:/Users/jim/.node/bin:/usr/local/heroku/bin:~/development/android-sdk-macosx/tools:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/jim/bin:/Users/jim/development/android/depot_tools:/Users/jim/bin:/Users/jim/development/android/depot_tools, NVM_NODEJS_ORG_MIRROR=https://nodejs.org/dist, PWD=/, HOMEBREW_GITHUB_API_TOKEN=ad4fb7a4e79b9680a6ba80e80367a3e376872ab1, JAVA_HOME=/Library/Java/JavaVirtualMachines/jdk1.7.0_25.jdk/Contents/Home, LANG=en_US.UTF-8, ITERM_PROFILE=Default, NODE_PATH=/Applications/Atom.app/Contents/Resources/app.asar/exports, XPC_FLAGS=0x0, PS1=\[\e[0;31m\]\h:\w$ \[\e[m\], NODE_ENV=production, SBT_OPTS=-XX:MaxPermSize, XPC_SERVICE_NAME=0, SHLVL=3, DOCKER_CERT_PATH=/Users/jim/.boot2docker/certs/boot2docker-vm, HOME=/Users/jim, COLORFGBG=0;15, ITERM_SESSION_ID=w3t0p0, LOGNAME=jim, DISPLAY=/private/tmp/com.apple.launchd.Jlq2zbPQ6j/org.macosforge.xquartz:0, _=/usr/bin/env
2015-11-24T17:38:21.168Z - debug: [beautifiers/beautifier.coffee] spawn /usr/local/bin/uncrustify 0=-c, 1=/var/folders/zq/zpn_lntn17q7khffvwlmpzq00000gn/T/1151024-27728-1epn64a.cfg, 2=-f, 3=/var/folders/zq/zpn_lntn17q7khffvwlmpzq00000gn/T/input1151024-27728-ztx4cs, 4=-o, 5=/var/folders/zq/zpn_lntn17q7khffvwlmpzq00000gn/T/output1151024-27728-i4hg3a, 6=-l, 7=CPP
2015-11-24T17:38:21.187Z - debug: [beautifiers/beautifier.coffee] spawn done 0 Parsing: /var/folders/zq/zpn_lntn17q7khffvwlmpzq00000gn/T/input1151024-27728-ztx4cs as language CPP
 
2015-11-24T17:38:21.187Z - verbose: [beautifiers/beautifier.coffee] spawn result 0  Parsing: /var/folders/zq/zpn_lntn17q7khffvwlmpzq00000gn/T/input1151024-27728-ztx4cs as language CPP


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