Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tonik/eslint-config
A shareable ESlint config for JavaScript used at Tonik
https://github.com/tonik/eslint-config
Last synced: 10 days ago
JSON representation
A shareable ESlint config for JavaScript used at Tonik
- Host: GitHub
- URL: https://github.com/tonik/eslint-config
- Owner: tonik
- License: mit
- Created: 2018-03-21T11:17:17.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-07-20T11:14:08.000Z (over 6 years ago)
- Last Synced: 2024-10-02T18:17:19.309Z (3 months ago)
- Language: JavaScript
- Size: 3.91 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# eslint-config
> A shareable ESlint config for JavaScript used at Tonik
## Install
```bash
npm install @tonik/eslint-config --save-dev
```## Usage
Shareable configs are designed to work with the `extends` feature of `.eslintrc` files. You can learn more about [Shareable Configs](http://eslint.org/docs/developer-guide/shareable-configs) on the official ESLint website.
To use a shareable config, first run this:
```bash
npm install --save-dev @tonik/eslint-config eslint-config-standard eslint-plugin-standard eslint-plugin-promise eslint-plugin-import eslint-plugin-node
```Then, add this to your .eslintrc file:
```
{
"extends": "@tonik/eslint-config"
}
```You can override settings from the shareable config by adding them directly into your
`.eslintrc` file.## License
Licensed under the [MIT license](http://opensource.org/licenses/MIT).