Package Exports
- happiness
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (happiness) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
JavaScript Happiness Style
Standard customised to make me happy.
Install
npm install happinessRules
Importantly:
- semicolons
- tabs
- Check feross/standard for the rest of the rules.
Badge
Use this in one of your projects? Include one of these badges in your readme to let people know that your code is using the standard style.
[](https://github.com/JedWatson/happiness)
[](https://github.com/feross/standard)Usage
The easiest way to use JavaScript happiness Style to check your code is to install it
globally as a Node command line program. To do so, simply run the following command in
your terminal (flag -g installs happiness globally on your system, omit it if you want
to install in the current working directory):
npm install happiness -gAfter you've done that you should be able to use the happiness program. The simplest use
case would be checking the style of all JavaScript files in the current working directory:
$ happiness
Error: Use JavaScript happiness Style
lib/torrent.js:950:11: Expected '===' and instead saw '=='.Editor plugins
- Sublime users: Try SublimeLinter-contrib-happiness for linting in your editor!
- Atom users - Install Linter and linter-js-standard (don't you mind with the misleading name it supports both styles).
What you might do if you're clever
- Add it to
package.json
{
"name": "my-cool-package",
"devDependencies": {
"happiness": "*"
},
"scripts": {
"test": "happiness && node my-normal-tests-littered-with-semicolons.js"
}
}- Check style automatically when you run
npm test
$ npm test
Error: Code style check failed:
lib/torrent.js:950:11: Expected '===' and instead saw '=='.- Never give style feedback on a pull request again! (unless it's about semicolons)
See feross/standard for more information.
Credits
Thanks to Flet and his work on semistandard for making this super easy to build on standard.