Atom package to format your Javascript using Standard Style , Semi-Standard Style or Happiness Style.
Use ctrl-alt-f
to format the current Javascript file. If a text selection is made, only the selected text will be formatted.
Automatically format your Javascript file on save by enabling the Format On Save package setting. This is off by default.
Packages > standard-formatter > Format
Format Javascript files when saving.
Check code style in package.json devDependencies
. If a valid style is not found it won't format.
| Note: This will use the nearest package.json
Choose the style formatter module you want to use. If checkStyleDevDependencies
is true
this setting will be ignored.
- standard - equivalent to running
standard --fix
- standard-format
- semi-standard - equivalent to running
semistandard --fix
- semistandard-format
- happiness-format
Don't auto-format files included in the package.json's "ignore"
configuration for the detected style.
| Note: This will use the nearest package.json
This package relies on the excellent work from the following modules to perform formatting:
If parts of your Javascript are not being formatted as you'd expect, is is likely an issue with one of these modules and not this Atom package. To verify this, you can try to format your file directly using the above modules and examine the output.
For example, to format my-file.js
and output to stdout:
$ npm install -g standard-format
$ standard-format my-file.js