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
- Host: GitHub
- URL: https://github.com/jwygithub/eslint-config
- Owner: jwyGithub
- License: mit
- Created: 2022-12-28T03:08:49.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-09-25T01:13:08.000Z (over 2 years ago)
- Last Synced: 2024-05-22T12:00:34.076Z (about 2 years ago)
- Topics: eslint, javascript, react, typescript, vue
- Language: JavaScript
- Homepage:
- Size: 182 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# @jiangweiye/eslint-config
#### jiangweiye eslint config
### 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'
};
```