SublimeLinter Settings 相关小提示

在新版中 部分设置已经以 注释的形式 内置于总的 setting 文件中。

相关设置如果需要重新定义,需要复制 选择器 和 注释中的属性值 到 user setting中。

Example:

// SublimeLinter Settings - User
{
  "highlights.time_to_idle": 0.25,
  "lint_mode": "save",  // - 设置lint的运行的方式为:  仅在文件被保存时
}

// Lint Mode determines when the linter is run.
// - background: asynchronously on every change
// - load_save: when a file is opened and every time it's saved
// - manual: only when calling the Lint This View command
// - save: only when a file is saved

总的setting文件已经被设置成 禁止修改。

The default styles cannot be overriden per se, you extend them in your user settings.
这个 默认的 样式    不能     被  推    翻     本质上, 你 延伸     他们   在 你的  用户  设置。 

更多信息可查询 http://www.sublimelinter.com/en/stable/linter_settings.html

# SublimeLinter Settings - User #

# Additional properties are not allowed ('user' was unexpected) #

# Sublime Text3 安装SublimeLinter后的配置 #

可能用到的链接 

https://segmentfault.com/a/1190000004169261 Sublime Text 3使用SublimeLinter配置JS,CSS,HTML语法检查

http://www.cnblogs.com/lhb25/archive/2013/05/01/sublimelinter-for-js-css-coding.html 借助 SublimeLinter 编写高质量的 JavaScript & CSS 代码

https://gaohaoyang.github.io/2015/03/26/sublimeLinter/ 代码校验工具 SublimeLinter 的安装与使用

原文地址:https://www.cnblogs.com/linuxin/p/9602134.html