https://github.com/ableco/eslint-config
ESLint configuration from https://github.com/ableco/coding-standards
https://github.com/ableco/eslint-config
Last synced: about 1 year ago
JSON representation
ESLint configuration from https://github.com/ableco/coding-standards
- Host: GitHub
- URL: https://github.com/ableco/eslint-config
- Owner: ableco
- Created: 2019-10-03T07:00:55.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-03-01T23:58:58.000Z (about 3 years ago)
- Last Synced: 2025-02-21T06:17:25.209Z (over 1 year ago)
- Language: JavaScript
- Size: 27.3 KB
- Stars: 0
- Watchers: 51
- Forks: 0
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# @ableco/eslint-config
This repository provides recommended ESLint configuration for use on Able JavaScript projects.
## Installation
### Using yarn:
`yarn add @ableco/eslint-config --dev`
### Using npm:
`npm install @ableco/eslint-config --save-dev`
## Usage
In your `.eslintrc.js` file, replace it with:
```javascript
module.exports = {
root: true,
settings: {
//... your own settings, for example "import/resolver" or "react".
},
extends: "@ableco"
};
```
> **Note:** This ESLint configuration only replaces `env`, `parser`, `extends`, `plugins` and `rules`.
## Contributing
Bug reports and pull requests are welcome on GitHub at https://github.com/ableco/eslint-config.
## License
The library is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).