SublimeLinter 忽略丢失的分号

SublimeLinter ignore missing semicolons

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

我已经尝试将 ignore_match 对象添加到默认设置和用户设置中,但没有任何效果。每次尝试确定后,我也会重新启动。

我什至尝试将其添加到设置的 excludes 部分。

这是我使用的资源: Linter Settings

这是我遇到的错误之一:

Z:\www\site\node\workers.js: line 162, col 2, Missing semicolon. (W033)

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

{
    "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
    }
}

编辑:

已将 ignore_match": ["Missing semicolon"] 添加到 jshint 选项。变成了:

    "jshint": {
        "@disable": false,
        "args": [],
        "excludes": [],
        "ignore_match": ["Missing semicolon"]
    },

简单回答:

ignore_match": ["Missing semicolon"] 添加到 jshint 选项。

"jshint": {
        "@disable": false,
        "args": [],
        "excludes": [],
        "ignore_match": ["Missing semicolon"]
    },

完整回答,

Full user settings json file:


{
    "user": {
        "linters": {
            "jshint": {
                "@disable": false,
                "ignore_match": [
                    ".*Missing.*",
                ]
            },
        }
    }
}