https://github.com/m99coder/eslint-config-m99coder
Config module for eslint-plugin-m99coder
https://github.com/m99coder/eslint-config-m99coder
Last synced: 27 days ago
JSON representation
Config module for eslint-plugin-m99coder
- Host: GitHub
- URL: https://github.com/m99coder/eslint-config-m99coder
- Owner: m99coder
- Created: 2016-07-28T19:45:36.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2022-12-30T18:27:51.000Z (over 3 years ago)
- Last Synced: 2025-10-20T04:55:53.669Z (6 months ago)
- Language: JavaScript
- Size: 171 KB
- Stars: 0
- Watchers: 0
- Forks: 2
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# eslint config m99coder [](https://www.npmjs.com/package/eslint-config-m99coder) [](https://www.npmjs.com/package/eslint-config-m99coder)
> A collection of useful ESLint rules.
[](https://travis-ci.org/m99coder/eslint-config-m99coder)
[](https://coveralls.io/github/m99coder/eslint-config-m99coder)
[](https://david-dm.org/m99coder/eslint-config-m99coder)
[](https://david-dm.org/m99coder/eslint-config-m99coder#info=devDependencies)
## Installation
You'll first need to install [ESLint](http://eslint.org):
```
$ npm i eslint --save-dev
```
Next, install `eslint-config-m99coder` and `eslint-plugin-m99coder`:
```
$ npm install eslint-config-m99coder eslint-plugin-m99coder --save-dev
```
**Note:** If you installed ESLint globally (using the `-g` flag) then you must also install the packages globally.
## Usage
Add `m99coder` to the plugins section of your `.eslintrc` configuration file. You can omit the `eslint-plugin-` prefix:
```json
{
"plugins": [
"m99coder"
]
}
```
Then configure the rules you want to use under the rules section as explained in [`eslint-plugin-m99coder`](https://github.com/m99coder/eslint-plugin-m99coder).