JSCS-Formatter
Sublime Text 3 Plugin to Autoformat with JSCS
Details
Installs
- Total 54K
- Win 32K
- Mac 17K
- Linux 5K
Nov 21 | Nov 20 | Nov 19 | Nov 18 | Nov 17 | Nov 16 | Nov 15 | Nov 14 | Nov 13 | Nov 12 | Nov 11 | Nov 10 | Nov 9 | Nov 8 | Nov 7 | Nov 6 | Nov 5 | Nov 4 | Nov 3 | Nov 2 | Nov 1 | Oct 31 | Oct 30 | Oct 29 | Oct 28 | Oct 27 | Oct 26 | Oct 25 | Oct 24 | Oct 23 | Oct 22 | Oct 21 | Oct 20 | Oct 19 | Oct 18 | Oct 17 | Oct 16 | Oct 15 | Oct 14 | Oct 13 | Oct 12 | Oct 11 | Oct 10 | Oct 9 | Oct 8 | Oct 7 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 1 | 2 | 1 | 3 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 2 | 2 | 1 | 0 | 0 | 1 | 1 | 2 | 1 | 2 | 1 | 1 | 2 | 1 | 1 | 2 | 1 | 1 | 0 | 2 | 0 | 0 | 0 | 0 | 2 | 0 | 2 | 1 | 2 | 1 |
Mac | 0 | 0 | 1 | 2 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 3 | 2 | 2 | 2 | 1 | 0 | 0 | 0 | 0 | 1 | 2 | 2 | 0 | 0 | 1 | 0 | 0 | 2 | 2 | 1 | 0 | 2 | 0 | 2 | 1 | 2 | 1 | 2 | 1 | 2 | 2 | 3 | 0 |
Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 2 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
SublimeJSCSFormatter for Sublime Text 3
Sublime Text 3 Plugin to autoformat your javascript code according to the JSCS configuration files you already have.
Installation
Linter installation
JSCS (with autoformatting) must be installed on your system before this plugin will work. To install jscs
, do the following:
npm install -g jscs
If you are using
nvm
andzsh
, ensure that the line to loadnvm
is in.zshenv
and not.zshrc
.If you are using
zsh
andoh-my-zsh
, do not load thenvm
plugin foroh-my-zsh
.
Plugin installation
Please use Package Control to install the linter plugin. This will ensure that the plugin will be updated when new versions are available. If you want to install from source so you can modify the source code, you probably know what you are doing so we won’t cover that here.
To install via Package Control, do the following:
Within Sublime Text, bring up the Command Palette and type
install
. Among the commands you should seePackage Control: Install Package
. If that command is not highlighted, use the keyboard or mouse to select it. There will be a pause of a few seconds while Package Control fetches the list of available plugins.When the plugin list appears, type
jscs format
. Among the entries you should seeJSCSFormatter
. If that entry is not highlighted, use the keyboard or mouse to select it.
Commands
Command palette:
- JSCSFormatter: Format this file
Shortcut key:
- Linux/Windows: [Ctrl + Shift + H]
- Mac: [Cmd + Shift + H]
Settings
By default, JSCSFormatter will supply the following settings:
{
// 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"
]
}
- Modify any settings within the
Preferences -> Package Settings -> JSCS Formatter -> Settings - User
file.
Project-specific settings override
To override global plugin configuration for a specific project, add a settings object with a JSCS-Formatter
key in your .sublime-project
. This file is accessible via Project -> Edit Project
.
For example:
{
"folders": [
{
"path": "."
}
],
"settings": {
"JSCS-Formatter": {
"format_on_save": true
}
}
}
Setting up paths in Sublime with NVM
- Find path of Node and 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",
},
}
Contributing
If you find any bugs feel free to report them here.
Pull requests are also encouraged.