JSHint 选项不适用 (Sublime3)

JSHint options do not apply (Sublime3)

我已经安装了 SublimeLinter 和 SublimeLinter-jshint 并且 JSHint 本身可以工作。但是,我无法配置 JSHint。我尝试将 jshint 设置添加到 SublimeLinter.sublime-settings 但似乎对 JSHint 没有影响。 这是我的设置(首选项 > 包设置 > SublimeLinter > 设置 - 用户)的样子:

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

我添加了一些示例设置,例如“"maxdepth": 1”,但这些规则不适用。这里缺少什么?

来自Settings section of the README on Github, also available on the Package Control page

You can configure jshint options in the way you would from the command line, with .jshintrc files. For more information, see the jshint docs. The linter plugin does this by searching for a .jshintrc file [...]

阅读完整部分和所有说明的链接文档,然后在适合您的项目的地方放置一个 .jshintrc 文件。