SublimeLinter忽略缺少的分号

Dav*_*vid 3 jslint sublimelinter sublimetext3

我在我的一个节点应用程序中使用了基于非分号的编码样式,但问题是SublimeLinter正在记录所有丢失的分号,并最终因"Too many errors"错误而停止,并停止linting其余的脚本.

我已经尝试将ignore_match对象添加到默认和用户设置,但没有任何作用.我每次尝试确保之后都会重新启动.

我甚至尝试将其添加到excludes设置的一部分.

这是我正在使用的资源: Linter Settings

这是我得到的错误之一:

Z:\www\site\node\workers.js: line 162, col 2, Missing semicolon. (W033)
Run Code Online (Sandbox Code Playgroud)

这是我的设置:来自用户.

{
    "user": {
        "debug": true,
        "delay": 0.25,
        "error_color": "D02000",
        "gutter_theme": "Packages/SublimeLinter/gutter-themes/Default/Default.gutter-theme",
        "gutter_theme_excludes": [],
        "ignore_match": [
            "Missing semicolon."
        ],
        "lint_mode": "background",
        "linters": {
            "annotations": {
                "@disable": false,
                "args": [],
                "errors": [
                    "FIXME"
                ],
                "excludes": ["Missing semicolon"],
                "warnings": [
                    "TODO",
                    "README"
                ]
            },
            "jshint": {
                "@disable": false,
                "args": [],
                "excludes": ["Missing semicolon"]
            },
            "php": {
                "@disable": false,
                "args": [],
                "excludes": []
            }
        },
        "mark_style": "outline",
        "no_column_highlights_line": false,
        "passive_warnings": false,
        "paths": {
            "linux": [],
            "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",
            "php": "html",
            "python django": "python"
        },
        "warning_color": "DDB700",
        "wrap_find": true
    }
}
Run Code Online (Sandbox Code Playgroud)

编辑:

添加ignore_match": ["Missing semicolon"]到jshint选项.它成了:

    "jshint": {
        "@disable": false,
        "args": [],
        "excludes": [],
        "ignore_match": ["Missing semicolon"]
    },
Run Code Online (Sandbox Code Playgroud)

Ami*_*ein 8

完整答案,

Full user settings json file:


{
    "user": {
        "linters": {
            "jshint": {
                "@disable": false,
                "ignore_match": [
                    ".*Missing.*",
                ]
            },
        }
    }
}
Run Code Online (Sandbox Code Playgroud)