An open API service indexing awesome lists of open source software.

https://github.com/zero-config/eslint-plugin-zero

Zero configuration eslint plugin.
https://github.com/zero-config/eslint-plugin-zero

eslint-plugin zero-config

Last synced: about 2 months ago
JSON representation

Zero configuration eslint plugin.

Awesome Lists containing this project

README

          

# eslint-plugin-zero
Zero configuration eslint plugin.

## Installation
`yarn add eslint-plugin-zero`

### Usage
Update `eslint config file` base on your project type:
### JavaScript
```json
{
"extends": ["plugin:zero/base"]
}
```

### React
```json
{
"extends": ["plugin:zero/react"]
}
```

### TypeScript
```json
{
"extends": ["plugin:zero/ts"]
}
```

### TypeScript React
```json
{
"extends": ["plugin:zero/ts-react"]
}
```