半标准格式
✨ 在保存或手动时针对 ST3 窗口中的 JavaScript 运行 semistandard --fix.
详细信息
安装
- 总计 433
- Win 0
- Mac 433
- Linux 0
2021年8月6日 | 2021年8月5日 | 2021年8月4日 | 2021年8月3日 | 2021年8月2日 | 2021年8月1日 | 2021年7月31日 | 2021年7月30日 | 2021年7月29日 | 2021年7月28日 | 2021年7月27日 | 2021年7月26日 | 2021年7月25日 | 2021年7月24日 | 2021年7月23日 | 2021年7月22日 | 2021年7月21日 | 2021年7月20日 | 2021年7月19日 | 2021年7月18日 | 2021年7月17日 | 2021年7月16日 | 2021年7月15日 | 2021年7月14日 | 2021年7月13日 | 2021年7月12日 | 2021年7月11日 | 2021年7月10日 | 2021年7月9日 | 2021年7月8日 | 2021年7月7日 | 2021年7月6日 | 2021年7月5日 | 2021年7月4日 | 2021年7月3日 | 2021年7月2日 | 2021年7月1日 | 2021年6月30日 | 2021年6月29日 | 2021年6月28日 | 2021年6月27日 | 2021年6月26日 | 2021年6月25日 | 2021年6月24日 | 2021年6月23日 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Mac | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
说明
半标准格式
一个 Sublime Text 3 插件,可在保存或在手动情况下针对 ST3 窗口的 JavaScript 运行 semistandard –fix。可以开启和关闭。包含一些设置,可以让您调整搜索路径以优先使用本地依赖项。
安装
使用 Package Control 安装 SemiStandard Format。
# In the command palate
- package control install
- semistandard format
SemiStandard Format (Sublime Text 插件)要求您将 semistandard
安装到项目中或全局安装。建议将其保存到本地区
$ npm install semistandard@latest --save-dev
配置
您可以在 SemiStandardFormat.sublime-settings
文件中找到 SemiStandard Format 设置。
SemiStandard Format 对查找开发依赖项非常严格。它默认使用的搜索路径顺序如下
- 用户添加的路径:您可以在设置文件中添加一个路径数组。除非您正在做奇怪的事情,否则通常不需要这样做。
- 在当前文件上方找到的任何
node_modules/.bin
路径。使用use_view_path
禁用此功能。 - 如果您的当前视图未保存到磁盘,项目中的任何文件夹都将向根目录遍历以查找
node_modules/.bin
并将其添加到此处的路径。使用use_project_path_fallback
禁用。 - 然后使用全局用户路径。如果找不到其他路径,此路径是通过启动一个 bash 实例来计算的,包括
.nvm
shims 的实路径。
其他设置
format_on_save
:布尔值。当日设置为 true 时,在保存时运行 SemiStandard Format。使用命令面板可以快速切换此功能的开或关。extensions
:字符串数组。您想要运行 SemiStandard Format 的文件扩展名数组。command
:可选 字符串数组。自定义 SemiStandard Format 运行的命令和标志。loud_error
:布尔值。指定在子进程格式化过程中遇到错误时是否显示状态栏消息或错误窗口。log_errors
:布尔值。允许您记录格式化过程中遇到的错误。主要用于抑制噪声格式化错误。
提示
现在支持Windows。请报告您遇到的所有问题。
代码检查器
SemiStandard格式与Sublime Text的semistandard
代码检查器配合良好
参考
- https://github.com/piuccio/sublime-esformatter
- https://github.com/ionutvmi/sublime-jsfmt
- https://github.com/enginespot/js-beautify-sublime
- https://github.com/jdc0589/JsFormat/commits/master
- https://github.com/akalongman/sublimetext-codeformatter
- https://github.com/DisposaBoy/GoSublime
- https://github.com/feross/standard
- https://github.com/Flet/semistandard
- https://github.com/Flet/SublimeLinter-contrib-standard
- https://github.com/Flet/SublimeLinter-contrib-semistandard
- https://github.com/bcomnes/sublime-standard-format