ctrl+shift+p filters: :st2 :st3 :win :osx :linux
浏览

SublimeLinter-contrib-htmlhint

作者: htmlhint ST3

使用 HTMLHint 的 HTML 的 SublimeLinter 插件。

详细信息

  • 2.0.1
  • github.com
  • github.com
  • 5年前
  • 1小时前
  • 9年前

安装次数

  • 总数 34K
  • Win 22K
  • Mac 8K
  • Linux 4K
2022年8月6日 2022年8月5日 2022年8月4日 2022年8月3日 2022年8月2日 2022年8月1日 2022年7月31日 2022年7月30日 2022年7月29日 2022年7月28日 2022年7月27日 2022年7月26日 2022年7月25日 2022年7月24日 2022年7月23日 2022年7月22日 2022年7月21日 2022年7月20日 2022年7月19日 2022年7月18日 2022年7月17日 2022年7月16日 2022年7月15日 2022年7月14日 2022年7月13日 2022年7月12日 2022年7月11日 2022年7月10日 2022年7月9日 2022年7月8日 2022年7月7日 2022年7月6日 2022年7月5日 2022年7月4日 2022年7月3日 2022年7月2日 2022年7月1日 2022年6月30日 2022年6月29日 2022年6月28日 2022年6月27日 2022年6月26日 2022年6月25日 2022年6月24日 2022年6月23日 2022年6月22日
Windows 1 0 1 0 4 1 0 1 0 1 1 2 1 1 2 0 0 0 0 1 1 2 1 0 0 0 0 2 0 0 0 0 1 1 2 0 0 0 1 0 0 0 1 1 1 0
Mac 1 2 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Linux 0 0 0 1 1 2 1 0 0 1 0 0 0 1 0 0 1 1 1 0 0 0 0 2 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 2 0 0 1 1

README

源代码
raw.githubusercontent.com


SublimeLinter contrib HTMLHint

使用 HTMLHint 的 HTML 的 SublimeLinter 插件。

Codecov NPM count MIT Licence Chat

  如何使用贡献网站

目录

这个代码检查插件为 SublimeLinter 提供 HTMLHint 的接口,它会用于具有“HTML”语法的文件。

安装

为了使用此插件,必须安装 SublimeLinter 3。如果尚未安装 SublimeLinter 3,请按照以下说明操作。

代码检查安装

在开始使用此插件之前,您必须确保系统上已安装 htmlhint。要安装 htmlhint,请按照以下步骤操作

  1. 安装 Node.js( Linux 上的 npm)。

  2. 在终端中输入以下命令以全局安装最新的 htmlhint

npm install -g htmlhint@latest

或者在您的项目文件夹中本地安装 htmlhint(您必须在其中具有 package.json 文件

```
npm init -f
npm install htmlhint@latest
```
  1. 如果您使用 nvmzsh,请确保在 .zshenv 而不是 .zshrc 中包含加载 nvm 的行。

注意: 此插件需要 htmlhint 0.9.13 或更高版本。通过运行上述步骤 2 来升级您的现有安装。

代码检查配置

为了使 SublimeLinter 能够执行 htmlhint,您必须确保其路径对 SublimeLinter 可用。在继续之前,请阅读并按照文档中的“找到代码检查可执行文件”部分中的步骤通过“检查您的 PATH”进行操作。

安装并配置 htmlhint 后,如果尚未安装,您可以继续安装 SublimeLinter-contrib-htmlhint 插件。

插件安装

请使用 Package Control 来安装代码检查器插件。这将确保新版本可用时插件将自动更新。如果您想从源代码安装以修改源代码,您可能知道自己在做什么,所以我们在这里不会讨论这个问题。

要通过包控制安装,执行以下步骤

  1. 在 Sublime Text 中,打开 命令面板 并输入 install。在您应该看到的命令中,应有 Package Control: Install Package。如果该命令没有被高亮显示,请使用键盘或鼠标选择它。几秒钟后,Package Control 将获取可用的插件列表。

  2. 当插件列表出现时,输入 htmlhint。在条目中,您应看到 SublimeLinter-contrib-htmlhint。如果该条目没有高亮显示,请使用键盘或鼠标选择它。

设置

有关 SublimeLinter 如何与设置一起工作的常规信息,请参阅 设置。有关通用代码检查器设置的信息,请参阅 代码检查器设置

您可以像在命令行中一样配置 htmlhint 选项,使用 .htmlhintrc 文件。有关更多信息,请参阅 .htmlhintrc 文档。代码检查器插件通过自身搜索 .htmlhintrc 文件来实现这一点,就像 htmlhint 从命令行中这样做一样。您可以设置代码检查器的 "args" 设置为 ["--config", "/path/to/file"] 来提供自定义配置文件。在 Windows 上,请确保路径中的转义字符加倍,例如 ["--config", "C:\\Users\\Username\\htmlhint.conf"]

.htmlhintrc 文件的路径被缓存,这意味着如果您创建了一个新的 .htmlhintrc 应该具有比先前的配置更高的优先级(这意味着它更接近 .js 文件),则需要清除代码检查器的缓存以使用新的 .htmlhintrc。您可以通过转到:工具 > SublimeLinter > 清除缓存 来清除缓存。

许可协议

项目最初由 @mmaday 创建并转交给 HTMLHint 组织。

MIT 许可协议