https://github.com/guidesmiths/eslint-config-imperative-es6
Imperative ES6 ESLint config. Just the stuff that matters
https://github.com/guidesmiths/eslint-config-imperative-es6
Last synced: 2 months ago
JSON representation
Imperative ES6 ESLint config. Just the stuff that matters
- Host: GitHub
- URL: https://github.com/guidesmiths/eslint-config-imperative-es6
- Owner: guidesmiths
- Created: 2016-07-14T22:31:06.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2018-10-12T05:11:27.000Z (almost 7 years ago)
- Last Synced: 2025-01-26T03:33:08.015Z (6 months ago)
- Language: JavaScript
- Size: 6.84 KB
- Stars: 0
- Watchers: 11
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# eslint-config-imperative-es6
#### An ESLint [Shareable Config](http://eslint.org/docs/developer-guide/shareable-configs)
JavaScript Imperative Style is just the stuff that actually matters rather than subjective preferences.
## Install
```bash
npm install eslint-config-imperative-es6
```## 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 the JavaScript Imperative ES6 Style shareable config, first run this:
```bash
npm install eslint-config-imperative-es6
```Then, add this to your .eslintrc file:
```
{
"extends": "imperative-es6"
}
```*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.