Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tyom/eslint-config
My ESLint base config
https://github.com/tyom/eslint-config
eslint eslint-config eslint-plugin-vue
Last synced: 2 days ago
JSON representation
My ESLint base config
- Host: GitHub
- URL: https://github.com/tyom/eslint-config
- Owner: tyom
- Created: 2018-09-23T18:49:57.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2022-02-11T20:00:57.000Z (over 2 years ago)
- Last Synced: 2023-03-22T11:48:51.640Z (over 1 year ago)
- Topics: eslint, eslint-config, eslint-plugin-vue
- Language: JavaScript
- Size: 116 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Tyom's ESLint config
Base for JS projects.
## Configs
- **base**
Base ES 2018 config for use with node and on the client.- **prettier**
Includes _base_ and Prettier plugin recommendations. Additional preferences.- **jest**
Includes _base_ and Jest plugin recommendations. Additional preferences.- **Vue**
Includes _base_ and Vue plugin strong recommendations. Additional preferences.## Install
```
npm i eslint-config-tyom
``````
yarn add eslint-config-tyom
```Then to import everything in `eslintrc`:
```json
{ "extends": ["tyom"] }
```individual configs:
```json
{ "extends": ["tyom/prettier", "tyom/vue"] }
```