JavaScript Standard Style with Trailing Commas - ESLint Shareable Config
npm install eslint-config-standard-trailing-commasbash
npm i -D eslint-config-standard-trailing-commas eslint-plugin-standard eslint-plugin-promise
`
Then, add this to your .eslintrc.json file:
`
{
"extends": "standard-trailing-commas"
}
`
Or this, if using React:
`
{
"extends": ["standard-trailing-commas", "standard-react"]
}
`
Original Standard documentation shown below for reference:
Standard - ESLint Shareable Config
[![travis][travis-image]][travis-url]
[![npm][npm-image]][npm-url]
[![downloads][downloads-image]][downloads-url]
[travis-image]: https://img.shields.io/travis/feross/eslint-config-standard/master.svg
[travis-url]: https://travis-ci.org/feross/eslint-config-standard
[npm-image]: https://img.shields.io/npm/v/eslint-config-standard.svg
[npm-url]: https://npmjs.org/package/eslint-config-standard
[downloads-image]: https://img.shields.io/npm/dm/eslint-config-standard.svg
[downloads-url]: https://npmjs.org/package/eslint-config-standard
#### An ESLint Shareable Config for JavaScript Standard Style
This module is for advanced users. You probably want to use standard instead :)

Install
`bash
npm install eslint-config-standard
`
Usage
Shareable configs are designed to work with the extends feature of .eslintrc files.
You can learn more about
Shareable Configs on the
official ESLint website.
To use the JavaScript Standard Style shareable config, first run this:
`bash
npm install eslint-config-standard eslint-plugin-standard eslint-plugin-promise
`
Then, add this to your .eslintrc file:
`
{
"extends": "standard"
}
`
Note: We omitted the eslint-config- prefix since it is automatically assumed by ESLint.
You can override settings from the shareable config by adding them directly into your
.eslintrc file.
$3
The easiest way to use JavaScript Standard Style to check your code is to use the
standard package. This comes with a global
Node command line program (standard) that you can run or add to your npm test script
to quickly check your style.
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.

`markdown

`

`markdown

``