Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/marekvospel/eslint-config
An eslint configuration fro javasccript, typescript and vuejs inspired by estlint-config-airbnb and @antfu/eslint-config
https://github.com/marekvospel/eslint-config
eslint eslint-config javascript typescript vuejs
Last synced: about 2 months ago
JSON representation
An eslint configuration fro javasccript, typescript and vuejs inspired by estlint-config-airbnb and @antfu/eslint-config
- Host: GitHub
- URL: https://github.com/marekvospel/eslint-config
- Owner: marekvospel
- License: mit
- Archived: true
- Created: 2022-03-19T11:30:14.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-05-18T22:43:54.000Z (over 1 year ago)
- Last Synced: 2024-09-18T13:43:54.205Z (2 months ago)
- Topics: eslint, eslint-config, javascript, typescript, vuejs
- Language: JavaScript
- Homepage:
- Size: 215 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Marek Vospěl's eslint configs
[![GitHub version](https://img.shields.io/github/package-json/v/marekvospel/eslint-config)](https://github.com/marekvospel/eslint-config)
[![npm](https://img.shields.io/npm/v/@vospel/eslint-config)](https://npmjs.com/package/@vospel/eslint-config)
[![Github license](https://img.shields.io/github/license/marekvospel/eslint-config)](https://github.com/marekvospel/eslint-config)These are settings for Eslint I use in my projects.
## Installing
Install `eslint` and `@vospel/eslint-config`
```shell
npm i -D eslint @vospel/eslint-config
# or
pnpm i -D eslint @vospel/eslint-config
# or
yarn add -D eslint @vospel/eslint-config
```Add extends to your `.eslintrc`
```js
module.exports = {
extends: [
'@vospel',
],
}
```