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.
- Host: GitHub
- URL: https://github.com/zero-config/eslint-plugin-zero
- Owner: zero-config
- Created: 2019-06-14T10:19:40.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2023-01-04T01:03:27.000Z (over 3 years ago)
- Last Synced: 2025-10-04T06:23:30.899Z (9 months ago)
- Topics: eslint-plugin, zero-config
- Language: JavaScript
- Homepage:
- Size: 821 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 14
-
Metadata Files:
- Readme: README.md
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"]
}
```