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

https://github.com/jwygithub/eslint-config

jiangweiye eslint config preset
https://github.com/jwygithub/eslint-config

eslint javascript react typescript vue

Last synced: 2 months ago
JSON representation

jiangweiye eslint config preset

Awesome Lists containing this project

README

          

# @jiangweiye/eslint-config

#### jiangweiye eslint config


version
download
issues
Vue



### install

#### with pnpm

```sh
pnpm add @jiangweiye/eslint-config eslint -D
```

#### with yarn

```sh
yarn add @jiangweiye/eslint-config eslint -D
```

#### with npm

```sh
npm install @jiangweiye/eslint-config eslint -D
```

### use

#### with js

```js
module.exports = {
extends: '@jiangweiye/eslint-config'
};
```

#### with ts

```typescript
process.env.ESLINT_TSCONFIG = 'tsconfig.json';
module.exports = {
extends: '@jiangweiye/eslint-config'
};
```