3

我在我的一个节点应用程序中使用基于非分号的编码样式,但问题是 SublimeLinter 正在记录所有丢失的分号,并最终因“错误太多”错误而停止,并停止对脚本的其余部分进行 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"]
    },
4

2 回答 2

8

完整的答案,

Full user settings json file:


{
    "user": {
        "linters": {
            "jshint": {
                "@disable": false,
                "ignore_match": [
                    ".*Missing.*",
                ]
            },
        }
    }
}
于 2015-07-09T16:27:33.490 回答
1

简单的回答:

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

"jshint": {
        "@disable": false,
        "args": [],
        "excludes": [],
        "ignore_match": ["Missing semicolon"]
    },
于 2015-07-04T20:14:43.513 回答