https://github.com/sleede/fabmanager-rules
Eslint coding rules for fab-manager
https://github.com/sleede/fabmanager-rules
Last synced: 19 days ago
JSON representation
Eslint coding rules for fab-manager
- Host: GitHub
- URL: https://github.com/sleede/fabmanager-rules
- Owner: sleede
- License: mit
- Created: 2022-05-24T07:52:31.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-07-20T07:38:32.000Z (almost 4 years ago)
- Last Synced: 2025-11-01T18:20:16.485Z (8 months ago)
- Language: JavaScript
- Size: 65.4 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# eslint-plugin-fabmanager
ESLint rules for Fab-manager
## Installation
You'll first need to install [ESLint](https://eslint.org/):
```sh
npm i eslint --save-dev
```
Next, install `eslint-plugin-fabmanager`:
```sh
npm install eslint-plugin-fabmanager --save-dev
```
## Usage
Add `fabmanager` to the plugins section of your `.eslintrc` configuration file. You can omit the `eslint-plugin-` prefix:
```json
{
"plugins": [
"fabmanager"
]
}
```
Then configure the rules you want to use under the rules section.
```json
{
"rules": {
"fabmanager/no-bootstrap": "error"
}
}
```
## Development
Use [Yeoman](https://github.com/eslint/generator-eslint) to generate a new rule.
Code with test-driven development.