如何添加到 JSHint 的 `asi` 选项?

How to add to the `asi` option to JSHint?

我想禁用缺少分号的警告。我该怎么办?

这是我的配置文件:

{
    "user": {
        "debug": false,
        "delay": 0.25,
        "error_color": "D02000",
        "gutter_theme": "Packages/SublimeLinter/gutter-themes/Blueberry/cross/Blueberry - cross.gutter-theme",
        "gutter_theme_excludes": [],
        "lint_mode": "background",
        "linters": {
            "jshint": {
                "@disable": false,
                "args": [],
                "excludes": []
            }
        },
        "mark_style": "none",
        "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",
            "javascript (babel)": "javascript",
            "php": "html",
            "python django": "python"
        },
        "warning_color": "DDB700",
        "wrap_find": true,
    }
}

我建议在您的项目中添加一个 .jshintrc 文件,您可以在其中添加所有设置,因为这是更好的做法,而不是全局更改您的设置(这样,其他人就可以使用通过使用相同的 .jshintrc 文件进行与您相同的 linter 设置)。


如果您仍想全局更改设置,您可以创建一个任意名称的文件(例如.jshint.conf)。将您的 jshint 设置添加到此文件。

示例 .jshint.conf 文件:

{
    "asi": true
}

将此文件保存在某处(我建议将其放在您的 Packages/User 中)。

现在,您只需更新您的 sublime linter 设置即可:

"linters": {
    "jshint": {
        "@disable": false,
        "args": [
            "--config", "c:\Use\Your\Path\To\jshint\settings\jshintrc.conf"
         ],
        "excludes": []
    }
}

关于 SublimeLinter-jshint 的更多信息https://github.com/SublimeLinter/SublimeLinter-jshint#settings

以后,无论您尝试配置什么插件,我都建议您查看自述文件。它们通常非常详细。 link 为您提供了有关全局设置 jshint 设置的确切说明。