https://github.com/hellosign/eslint-config
HelloSign's shareable ESLint config.
https://github.com/hellosign/eslint-config
eslint javascript
Last synced: 4 days ago
JSON representation
HelloSign's shareable ESLint config.
- Host: GitHub
- URL: https://github.com/hellosign/eslint-config
- Owner: hellosign
- License: mit
- Created: 2018-08-17T18:42:40.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-03-08T00:41:29.000Z (almost 3 years ago)
- Last Synced: 2025-10-05T17:21:10.301Z (4 months ago)
- Topics: eslint, javascript
- Language: JavaScript
- Homepage:
- Size: 149 KB
- Stars: 2
- Watchers: 14
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# @hellosign/eslint-config [](https://travis-ci.org/hellosign/eslint-config)
ESLint [shareable config](http://eslint.org/docs/developer-guide/shareable-configs.html) by [HelloSign](https://www.hellosign.com).
This config extends [AirBnB's `eslint-config-airbnb-base`](https://www.npmjs.com/package/eslint-config-airbnb-base) with a few minor exceptions.
## Install
```bash
npm install --save-dev eslint @hellosign/eslint-config
```
## Usage
In your ESLint configuration add:
```json
{
"extends": "@hellosign"
}
```
If you'd like to apply custom rules which override our default config, simply add them to `rules`.
```json
{
"extends": "@hellosign",
"rules": {
"comma-dangle": ["error", "never"]
}
}
```
## Integrations
To integrate ESLint into your editor, check out [ESLint's integrations user guide](https://eslint.org/docs/user-guide/integrations).
© 2018 [HelloSign](https://hellosign.com). All rights reserved.