Ubuntu Sublime Texto 3 SublimeLinter jshint não funciona

0

Eu não consigo fazer o jshint trabalhar no meu texto sublime3 .. Eu já instalei o pacote SublimeLinter e o sublimelinter-jshint. Eu também já instalei node.js e instalei módulos jshint com este comando

sudo npm install -g jshint

mas simplesmente não está funcionando. aqui está o meu arquivo de configuração sublime

{
    "user": {
        "debug": false,
        "delay": 0.25,
        "error_color": "D02000",
        "gutter_theme": "Packages/SublimeLinter/gutter-themes/Default/Default.gutter-theme",
        "gutter_theme_excludes": [],
        "lint_mode": "save only",
        "linters": {
            "jshint": {
                "@disable": false,
                "args": [],
                "excludes": []
            },
            "php": {
                "@disable": false,
                "args": [],
                "excludes": []
            }
        },
        "mark_style": "outline",
        "no_column_highlights_line": false,
        "passive_warnings": false,
        "paths": {
            "linux": [
                "/usr/local/bin/jshint"
            ],
            "osx": [],
            "windows": []
        },
        "php_paths": {
            "linux": [
                "/usr/bin/php"
            ],
            "osx": [],
            "windows": []
        },
        "python_paths": {
            "linux": [],
            "osx": [],
            "windows": []
        },
        "rc_search_limit": 3,
        "shell_timeout": 10,
        "show_errors_on_save": false,
        "show_marks_in_minimap": true,
        "syntax_map": {
            "html (django)": "html",
            "html (rails)": "html",
            "html 5": "html",
            "javascript (babel)": "javascript",
            "magicpython": "python",
            "php": "html",
            "python django": "python"
        },
        "warning_color": "DDB700",
        "wrap_find": true
    }
}

Eu me pergunto se alguém tem uma solução.

    
por Nikolius Lau 24.12.2015 / 11:08

1 resposta

0

Altere "show_errors_on_save" de falso para verdadeiro; e depois reinicie você sublime. Deveria trabalhar. Fez para mim!

    
por user521147 21.03.2016 / 07:54