Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/exbotanical/eslint-config
Extensible eslint configurations for the punctilious developer.
https://github.com/exbotanical/eslint-config
eslint eslint-config
Last synced: 2 days ago
JSON representation
Extensible eslint configurations for the punctilious developer.
- Host: GitHub
- URL: https://github.com/exbotanical/eslint-config
- Owner: exbotanical
- License: mit
- Created: 2021-09-15T04:27:13.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2025-02-12T09:43:32.000Z (2 days ago)
- Last Synced: 2025-02-12T10:28:18.980Z (2 days ago)
- Topics: eslint, eslint-config
- Language: JavaScript
- Homepage:
- Size: 1.01 MB
- Stars: 20
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# @magister_zito/eslint-config
Extensible eslint configurations for the punctilious developer.
## Packages
- `all` Aggregate of Vue, React, and Typescript-specific rulesets.
- `base` Base configuration with rulesets for markdown, yaml, json, package.json, and code.
- `javascript` Extension of `base` for JavaScript codebases.
- `react` React TypeScript rulesets. Additionally includes Cypress and accessibility rulesets.
- `typescript` TypeScript rulesets.
- `vue` Vue TypeScript rulesets. Additionally includes Cypress and accessibility rulesets.## Usage
In .eslintrc,
```json
{
"extends": ["@magister_zito"]
}
```Base
```bash
npm i -D @magister_zito/eslint-config-base
``````json
{
"extends": ["@magister_zito/base"]
}
```Javascript
```bash
npm i -D @magister_zito/eslint-config-javascript
``````json
{
"extends": ["@magister_zito/javascript"]
}
```React
```bash
npm i -D @magister_zito/eslint-config-react
``````json
{
"extends": ["@magister_zito/react"]
}
```TypeScript
```bash
npm i -D @magister_zito/eslint-config-typescript
``````json
{
"extends": ["@magister_zito/typescript"]
}
```Vue
```bash
npm i -D @magister_zito/eslint-config-vue
``````json
{
"extends": ["@magister_zito/vue"]
}
```