Skip to content

Instantly share code, notes, and snippets.

@carter-lavering
Created February 3, 2016 22:23
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save carter-lavering/2cf0611a47d03edfea11 to your computer and use it in GitHub Desktop.
Save carter-lavering/2cf0611a47d03edfea11 to your computer and use it in GitHub Desktop.

Atom Beautify - Debugging information

The following debugging information was generated by Atom Beautify on Wed Feb 03 2016 14:17:52 GMT-0800 (Pacific Standard Time).


Table Of Contents


Platform: win32

Versions

Atom Version: 1.4.3

Atom Beautify Version: 0.28.21

Original file to be beautified

Original File Path: C:\Users\Carter Lavering\Documents\project.py

Original File Grammar: Python

Original File Language: Python

Language namespace: python

Supported Beautifiers: autopep8, yapf

Selected Beautifier: autopep8

Original File Contents

LOCATIONS = {}

lines = int(input())

for __ in range(lines):
    inputs = input().split()
    location_one = inputs[0]
    location_two = inputs[1]

    if location_one not in LOCATIONS:
        LOCATIONS[location_one] = []
    LOCATIONS[location_one].append(location_two)

    if location_two not in LOCATIONS:
        LOCATIONS[location_two] = []
    LOCATIONS[location_two].append(location_one)

def connected(a, b):
    """Returns whether two locations are connected, according to LOCATIONS."""
    return LOCATIONS[a] == b or LOCATIONS[b] == a

def generate_tree(origin, source):
    """Recursively generates a dictionary tree showing all children from the origin."""
    tree = {}
    while True:
        for branch in source:
            tree
    return tree

def route(origin, destination):
    """Returns the shortest route between two locations."""
    assert origin in LOCATIONS and destination in LOCATIONS

Package Settings

The raw package settings options

{
    "_analyticsUserId": "853126dc-bbe2-4b78-b03a-4cfbec5cdfe8",
    "analytics": true,
    "_loggerLevel": "warn",
    "beautifyEntireFileOnSave": true,
    "muteUnsupportedLanguageErrors": false,
    "muteAllErrors": false,
    "arduino_configPath": "",
    "cs_configPath": "",
    "c_configPath": "",
    "cpp_configPath": "",
    "css_indent_size": 4,
    "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": 4,
    "gherkin_indent_char": " ",
    "fortran_emacs_path": "",
    "fortran_emacs_script_path": "",
    "html_indent_inner_html": false,
    "html_indent_size": 4,
    "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": 4,
    "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": 4,
    "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": 4,
    "ruby_rubocop_path": "",
    "ruby_indent_char": " ",
    "rust_rustfmt_path": "",
    "sql_indent_size": 4,
    "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": 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": 4,
        "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": 4,
        "indent_char": " "
    },
    "fortran": {
        "emacs_path": "",
        "emacs_script_path": ""
    },
    "html": {
        "indent_inner_html": false,
        "indent_size": 4,
        "indent_char": " ",
        "brace_style": "collapse",
        "indent_scripts": "normal",
        "wrap_line_length": 250,
        "wrap_attributes": "auto",
        "wrap_attributes_indent_size": 4,
        "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": 4,
        "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": 4,
        "rubocop_path": "",
        "indent_char": " "
    },
    "rust": {
        "rustfmt_path": ""
    },
    "sql": {
        "indent_size": 4,
        "keywords": "upper",
        "identifiers": "lower"
    },
    "vala": {
        "configPath": ""
    }
}

Home Options: Options from C:\Users\Carter Lavering\.jsbeautifyrc

{
    "_default": {}
}

EditorConfig Options: Options from EditorConfig file

{
    "_default": {}
}

Project Options: Options from .jsbeautifyrc files starting from directory C:\Users\Carter Lavering\Documents and going up to root

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

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

{
    "indent_size": 4,
    "indent_char": " ",
    "indent_with_tabs": false,
    "max_line_length": 79,
    "ignore": [
        "E24"
    ],
    "sort_imports": false
}

Final Options

Final combined and transformed options that are used

{
    "indent_size": 4,
    "indent_char": " ",
    "indent_with_tabs": false,
    "max_line_length": 79,
    "ignore": [
        "E24"
    ],
    "sort_imports": false
}

Results

Beautified File Contents:

LOCATIONS = {}

lines = int(input())

for __ in range(lines):
    inputs = input().split()
    location_one = inputs[0]
    location_two = inputs[1]

    if location_one not in LOCATIONS:
        LOCATIONS[location_one] = []
    LOCATIONS[location_one].append(location_two)

    if location_two not in LOCATIONS:
        LOCATIONS[location_two] = []
    LOCATIONS[location_two].append(location_one)

def connected(a, b):
    """Returns whether two locations are connected, according to LOCATIONS."""
    return LOCATIONS[a] == b or LOCATIONS[b] == a

def generate_tree(origin, source):
    """Recursively generates a dictionary tree showing all children from the origin."""
    tree = {}
    while True:
        for branch in source:
            tree
    return tree

def route(origin, destination):
    """Returns the shortest route between two locations."""
    assert origin in LOCATIONS and destination in LOCATIONS

Original vs. Beautified Diff:

Index: C:\Users\Carter Lavering\Documents\project.py
===================================================================
--- C:\Users\Carter Lavering\Documents\project.py	original
+++ C:\Users\Carter Lavering\Documents\project.py	beautified

Logs

2016-02-03T22:17:52.253Z - info: [beautifiers\index.coffee] beautify LOCATIONS = {}

lines = int(input())

for __ in range(lines):
    inputs = input().split()
    location_one = inputs[0]
    location_two = inputs[1]

    if location_one not in LOCATIONS:
        LOCATIONS[location_one] = []
    LOCATIONS[location_one].append(location_two)

    if location_two not in LOCATIONS:
        LOCATIONS[location_two] = []
    LOCATIONS[location_two].append(location_one)

def connected(a, b):
    """Returns whether two locations are connected, according to LOCATIONS."""
    return LOCATIONS[a] == b or LOCATIONS[b] == a

def generate_tree(origin, source):
    """Recursively generates a dictionary tree showing all children from the origin."""
    tree = {}
    while True:
        for branch in source:
            tree
    return tree

def route(origin, destination):
    """Returns the shortest route between two locations."""
    assert origin in LOCATIONS and destination in LOCATIONS
 [ { _default: { indent_size: 4, indent_char: ' ', indent_with_tabs: false } },
  { arduino: { configPath: '' },
    cs: { configPath: '' },
    c: { configPath: '' },
    cpp: { configPath: '' },
    css: 
     { indent_size: 4,
       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: 4, indent_char: ' ' },
    fortran: { emacs_path: '', emacs_script_path: '' },
    html: 
     { indent_inner_html: false,
       indent_size: 4,
       indent_char: ' ',
       brace_style: 'collapse',
       indent_scripts: 'normal',
       wrap_line_length: 250,
       wrap_attributes: 'auto',
       wrap_attributes_indent_size: 4,
       preserve_newlines: true,
       max_preserve_newlines: 10,
       unformatted: [Object],
       end_with_newline: false,
       extra_liners: [Object] },
    java: { configPath: '' },
    js: 
     { indent_size: 4,
       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: 4, rubocop_path: '', indent_char: ' ' },
    rust: { rustfmt_path: '' },
    sql: { indent_size: 4, keywords: 'upper', identifiers: 'lower' },
    vala: { configPath: '' } },
  { _default: {} },
  { _default: {} },
  { _default: {} },
  { _default: {} },
  { _default: {} } ] Python C:\Users\Carter Lavering\Documents\project.py undefined
2016-02-03T22:17:52.254Z - verbose: [beautifiers\index.coffee]  indent_size=4, indent_char= , indent_with_tabs=false, configPath=, configPath=, configPath=, configPath=, indent_size=4, 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=4, indent_char= , emacs_path=, emacs_script_path=, indent_inner_html=false, indent_size=4, indent_char= , brace_style=collapse, indent_scripts=normal, wrap_line_length=250, wrap_attributes=auto, wrap_attributes_indent_size=4, 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=4, 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=4, rubocop_path=, indent_char= , rustfmt_path=, indent_size=4, keywords=upper, identifiers=lower, configPath=, , , , , 
2016-02-03T22:17:52.257Z - verbose: [beautifiers\index.coffee] [ { name: 'Python',
    namespace: 'python',
    grammars: [ 'Python' ],
    extensions: [ 'py' ],
    options: 
     { max_line_length: [Object],
       indent_size: [Object],
       ignore: [Object],
       sort_imports: [Object] },
    beautifiers: [ 'autopep8', 'yapf' ] } ] 'Python' 'py'
2016-02-03T22:17:52.257Z - verbose: [beautifiers\index.coffee] Language Python supported
2016-02-03T22:17:52.258Z - verbose: [beautifiers\index.coffee] getOptions selections [ 'python' ] indent_size=4, indent_char= , indent_with_tabs=false, configPath=, configPath=, configPath=, configPath=, indent_size=4, 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=4, indent_char= , emacs_path=, emacs_script_path=, indent_inner_html=false, indent_size=4, indent_char= , brace_style=collapse, indent_scripts=normal, wrap_line_length=250, wrap_attributes=auto, wrap_attributes_indent_size=4, 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=4, 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=4, rubocop_path=, indent_char= , rustfmt_path=, indent_size=4, keywords=upper, identifiers=lower, configPath=, , , , , 
2016-02-03T22:17:52.258Z - verbose: [beautifiers\index.coffee] true indent_size=4, indent_char= , indent_with_tabs=false
2016-02-03T22:17:52.258Z - verbose: [beautifiers\index.coffee] options python undefined
2016-02-03T22:17:52.259Z - verbose: [beautifiers\index.coffee] options python indent_size=4, indent_char= , indent_with_tabs=false
2016-02-03T22:17:52.259Z - verbose: [beautifiers\index.coffee] true configPath=, configPath=, configPath=, configPath=, indent_size=4, 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=4, indent_char= , emacs_path=, emacs_script_path=, indent_inner_html=false, indent_size=4, indent_char= , brace_style=collapse, indent_scripts=normal, wrap_line_length=250, wrap_attributes=auto, wrap_attributes_indent_size=4, 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=4, 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=4, rubocop_path=, indent_char= , rustfmt_path=, indent_size=4, keywords=upper, identifiers=lower, configPath=
2016-02-03T22:17:52.259Z - verbose: [beautifiers\index.coffee] options python max_line_length=79, indent_size=4, ignore=[E24], sort_imports=false
2016-02-03T22:17:52.259Z - verbose: [beautifiers\index.coffee] options python max_line_length=79, indent_size=4, ignore=[E24], sort_imports=false
2016-02-03T22:17:52.260Z - verbose: [beautifiers\index.coffee] true 
2016-02-03T22:17:52.260Z - verbose: [beautifiers\index.coffee] options python undefined
2016-02-03T22:17:52.260Z - verbose: [beautifiers\index.coffee] options python
2016-02-03T22:17:52.260Z - verbose: [beautifiers\index.coffee] true 
2016-02-03T22:17:52.260Z - verbose: [beautifiers\index.coffee] options python undefined
2016-02-03T22:17:52.260Z - verbose: [beautifiers\index.coffee] options python
2016-02-03T22:17:52.260Z - verbose: [beautifiers\index.coffee] true 
2016-02-03T22:17:52.260Z - verbose: [beautifiers\index.coffee] options python undefined
2016-02-03T22:17:52.260Z - verbose: [beautifiers\index.coffee] options python
2016-02-03T22:17:52.260Z - verbose: [beautifiers\index.coffee] true 
2016-02-03T22:17:52.260Z - verbose: [beautifiers\index.coffee] options python undefined
2016-02-03T22:17:52.261Z - verbose: [beautifiers\index.coffee] options python
2016-02-03T22:17:52.261Z - verbose: [beautifiers\index.coffee] true 
2016-02-03T22:17:52.261Z - verbose: [beautifiers\index.coffee] options python undefined
2016-02-03T22:17:52.261Z - verbose: [beautifiers\index.coffee] options python
2016-02-03T22:17:52.261Z - verbose: [beautifiers\index.coffee] Python name=Python, namespace=python, grammars=[Python], extensions=[py], type=integer, default=79, description=set maximum allowed line length (Supported by autopep8), title=Python - Max line length, beautifiers=[autopep8], key=max_line_length, $ref=$, type=integer, default=4, minimum=0, description=Indentation size/length (Supported by autopep8), title=Python - Indent size, beautifiers=[autopep8], key=indent_size, $ref=$, type=array, default=[E24], type=string, description=do not fix these errors/warnings (Supported by autopep8), title=Python - Ignore, beautifiers=[autopep8], key=ignore, $ref=$, type=boolean, default=false, description=sort imports (requires isort installed) (Supported by autopep8), title=Python - Sort imports, beautifiers=[autopep8], key=sort_imports, $ref=$, beautifiers=[autopep8, yapf]
2016-02-03T22:17:52.262Z - verbose: [beautifiers\index.coffee] language options: {
    "indent_size": 4,
    "indent_char": " ",
    "indent_with_tabs": false,
    "max_line_length": 79,
    "ignore": [
        "E24"
    ],
    "sort_imports": false
}
2016-02-03T22:17:52.262Z - verbose: [beautifiers\index.coffee] Python C:\Users\Carter Lavering\Documents\project.py { indent_size: 4,
  indent_char: ' ',
  indent_with_tabs: false,
  max_line_length: 79,
  ignore: [ 'E24' ],
  sort_imports: false } indent_size=4, indent_char= , indent_with_tabs=false, configPath=, configPath=, configPath=, configPath=, indent_size=4, 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=4, indent_char= , emacs_path=, emacs_script_path=, indent_inner_html=false, indent_size=4, indent_char= , brace_style=collapse, indent_scripts=normal, wrap_line_length=250, wrap_attributes=auto, wrap_attributes_indent_size=4, 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=4, 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=4, rubocop_path=, indent_char= , rustfmt_path=, indent_size=4, keywords=upper, identifiers=lower, configPath=, , , , , 
2016-02-03T22:17:52.265Z - verbose: [beautifiers\index.coffee] beautifiers 0=autopep8, 1=yapf
2016-02-03T22:17:52.265Z - verbose: [beautifiers\index.coffee] beautifier autopep8
2016-02-03T22:17:52.268Z - debug: [beautifiers\beautifier.coffee] tempFile input null path=C:\Users\CARTER~1\AppData\Local\Temp\input11613-7584-1moec80, fd=5
2016-02-03T22:17:52.275Z - debug: [beautifiers\beautifier.coffee] exeName, args: autopep8 0=C:\Users\CARTER~1\AppData\Local\Temp\input11613-7584-1moec80, 1=-i, 2=--max-line-length, 3=79, 4=--indent-size, 5=4, 6=--ignore, 7=E24
2016-02-03T22:17:52.300Z - debug: [beautifiers\beautifier.coffee] exePath, env: C:\Users\Carter Lavering\AppData\Local\Programs\Python\Python35\Scripts\autopep8.EXE ALLUSERSPROFILE=C:\ProgramData, APPDATA=C:\Users\Carter Lavering\AppData\Roaming, ATOM_HOME=C:\Users\Carter Lavering\.atom, CommonProgramFiles=C:\Program Files (x86)\Common Files, CommonProgramFiles(x86)=C:\Program Files (x86)\Common Files, CommonProgramW6432=C:\Program Files\Common Files, COMPUTERNAME=C-LAPTOP, ComSpec=C:\WINDOWS\system32\cmd.exe, FPS_BROWSER_APP_PROFILE_STRING=Internet Explorer, FPS_BROWSER_USER_PROFILE_STRING=Default, GOOGLE_API_KEY=AIzaSyAQfxPJiounkhOjODEO5ZieffeBv6yft2Q, HOMEDRIVE=C:, HOMEPATH=\Users\Carter Lavering, LOCALAPPDATA=C:\Users\Carter Lavering\AppData\Local, LOGONSERVER=\\C-LAPTOP, NODE_ENV=production, NODE_PATH=C:\Users\Carter Lavering\AppData\Local\atom\app-1.4.3\resources\app.asar\exports, NUMBER_OF_PROCESSORS=4, OS=Windows_NT, Path=C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\Users\Carter Lavering\AppData\Local\atom\bin;C:\Users\Carter Lavering\AppData\Local\Programs\Python\Python35;C:\Users\Carter Lavering\AppData\Local\Programs\Python\Python35\Scripts, PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, PROCESSOR_ARCHITECTURE=x86, PROCESSOR_ARCHITEW6432=AMD64, PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 58 Stepping 9, GenuineIntel, PROCESSOR_LEVEL=6, PROCESSOR_REVISION=3a09, ProgramData=C:\ProgramData, ProgramFiles=C:\Program Files (x86), ProgramFiles(x86)=C:\Program Files (x86), ProgramW6432=C:\Program Files, PROMPT=$P$G, PSModulePath=C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules\, PUBLIC=C:\Users\Public, SESSIONNAME=Console, SystemDrive=C:, SystemRoot=C:\WINDOWS, TEMP=C:\Users\CARTER~1\AppData\Local\Temp, TMP=C:\Users\CARTER~1\AppData\Local\Temp, USERDOMAIN=C-LAPTOP, USERDOMAIN_ROAMINGPROFILE=C-LAPTOP, USERNAME=Carter Lavering, USERPROFILE=C:\Users\Carter Lavering, windir=C:\WINDOWS
2016-02-03T22:17:52.301Z - debug: [beautifiers\beautifier.coffee] spawn C:\Users\Carter Lavering\AppData\Local\Programs\Python\Python35\Scripts\autopep8.EXE 0=C:\Users\CARTER~1\AppData\Local\Temp\input11613-7584-1moec80, 1=-i, 2=--max-line-length, 3=79, 4=--indent-size, 5=4, 6=--ignore, 7=E24
2016-02-03T22:17:52.338Z - debug: [beautifiers\beautifier.coffee] spawn done 0 failed to create process.
 
2016-02-03T22:17:52.338Z - verbose: [beautifiers\beautifier.coffee] spawn result 0  failed to create process.


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