JSCS-Formatter
Sublime Text 3 插件,用于自动格式化 JSCS
详细信息
安装
- 总计 54K
- Win 32K
- Mac 17K
- Linux 5K
8月6日 | 8月5日 | 8月4日 | 8月3日 | 8月2日 | 8月1日 | 7月31日 | 7月30日 | 7月29日 | 7月28日 | 7月27日 | 7月26日 | 7月25日 | 7月24日 | 7月23日 | 7月22日 | 7月21日 | 7月20日 | 7月19日 | 7月18日 | 7月17日 | 7月16日 | 7月15日 | 7月14日 | 7月13日 | 7月12日 | 7月11日 | 7月10日 | 7月9日 | 7月8日 | 7月7日 | 7月6日 | 7月5日 | 7月4日 | 7月3日 | 7月2日 | 7月1日 | 6月30日 | 6月29日 | 6月28日 | 6月27日 | 6月26日 | 6月25日 | 6月24日 | 6月23日 | 6月22日 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 2 | 1 | 1 | 1 | 3 | 4 | 0 | 4 | 1 | 0 | 2 | 1 | 1 | 3 | 1 | 4 | 2 | 1 | 1 | 3 | 0 | 2 | 0 | 0 | 2 | 1 | 1 | 3 | 1 | 3 | 0 | 0 | 1 | 1 | 2 | 0 | 1 | 0 | 1 | 4 | 1 | 3 | 3 | 9 | 0 | 0 |
Mac | 3 | 3 | 0 | 0 | 0 | 1 | 2 | 0 | 2 | 0 | 0 | 1 | 1 | 3 | 2 | 2 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 2 | 0 | 1 | 3 | 1 | 2 | 3 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 3 | 1 | 0 | 1 | 0 | 1 |
Linux | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 |
README
SublimeJSCSFormatter 针对Sublime Text 3
Sublime Text 3 插件,根据您已经拥有的 JSCS 配置文件自动格式化您的javascript代码。
安装
代码检查器安装
在使用此插件之前,JSCS(带有自动格式化)必须已安装在您的系统上。要安装 jscs
,请按照以下步骤操作:
npm install -g jscs
如果您正在使用
nvm
和zsh
,请确保在.zshenv
而不是.zshrc
中添加加载nvm
的行。如果您正在使用
zsh
和oh-my-zsh
,请不要为oh-my-zsh
加载nvm
插件。
插件安装
请使用 Package Control 安装代码检查器插件。这将确保在新的版本可用时更新插件。如果您想从源安装以修改源代码,您可能已经知道该怎么做,所以我们在这里不会涵盖该内容。
要通过 Package Control 安装,请按照以下步骤操作:
在 Sublime Text 中,调用 命令面板 并键入
install
。在您应该看到的命令中,您应该看到Package Control: Install Package
。如果该命令没有高亮显示,请使用键盘或鼠标来选择它。几秒钟后,Package Control 将获取可用的插件列表。当插件列表出现时,键入
jscs format
。在条目中,您应该看到JSCSFormatter
。如果该条目没有高亮显示,请使用键盘或鼠标来选择它。
命令
命令面板
- JSCSFormatter: 格式化此文件
快捷键
- Linux/Windows: [Ctrl + Shift + H]
- Mac: [Cmd + Shift + H]
设置
默认情况下,JSCSFormatter 将提供以下设置
{
// The Nodejs installation path
"node_path": {
"windows": "node.exe",
"linux": "/usr/bin/nodejs",
"osx": "/usr/local/bin/node"
},
// The location of the the globally installed jscs package
"jscs_path": {
"windows": "%APPDATA%/npm/node_modules/jscs/bin/jscs",
"linux": "/usr/bin/jscs",
"osx": "/usr/local/bin/jscs"
},
// Specify this path to a JSCS config file to override the default behavior.
// Passed to JSCS as --config. Read more here:
// http://jscs.info/overview.html#-config-
"config_path": "",
// Automatically format when a file is saved.
"format_on_save": false,
// Only attempt to format files with whitelisted extensions on save.
// Leave empty to disable the check
"format_on_save_extensions": [
"js",
"jsx",
"es",
"es6",
"babel"
]
}
- 修改
首选项 -> 包设置 -> JSCS Formatter -> 设置 - 用户
文件内的任何设置。
项目特定设置覆盖
要覆盖特定项目的全局插件配置,请在您的 .sublime-project
文件中添加一个具有 JSCS-Formatter
键的设置对象。此文件可以通过 项目 -> 编辑项目
访问。
例如
{
"folders": [
{
"path": "."
}
],
"settings": {
"JSCS-Formatter": {
"format_on_save": true
}
}
}
使用 NVM 在 Sublime 中设置路径
- 找到 Node 和 JSCS 的路径:执行 "npm config get prefix"
2. Return to Sublime
Modify the file at `Preferences > Package Settings > JSCS-Formatter > Settings-User`.
Update the `node_path` and `jscs_path` settings.
```javascript
{
"node_path": {
"linux": "/home/YOURUSER/.nvm/versions/node/v6.9.2/bin/node",
},
"jscs_path": {
"linux": "/home/YOURUSER/.nvm/versions/node/v6.9.2/bin/jscs",
},
}
贡献
如果您发现任何错误,请 freely 提交错误报告 在此.
也鼓励您提交 pull requests。