我想禁用分号丢失的警告。我该怎么办?
这是我的配置文件:
{
"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,
}
}
答案 0 :(得分:1)
我建议在项目中添加.jshintrc
文件,您可以在其中添加所有设置,因为这是更好的做法,而不是全局更改设置(这样,其他人就可以使用相同的linter通过使用相同的.jshintrc
文件设置。
如果您仍想全局更改设置,可以创建一个具有任何名称的文件(例如.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
将来,我建议您查看README,了解您尝试配置的任何插件。它们通常非常详细。该链接为您提供了有关全局设置jshint设置的确切说明。