Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/techassi/eslint-config
Personal ESLint config
https://github.com/techassi/eslint-config
eslint eslint-config
Last synced: 2 days ago
JSON representation
Personal ESLint config
- Host: GitHub
- URL: https://github.com/techassi/eslint-config
- Owner: Techassi
- License: mit
- Created: 2021-12-30T15:14:08.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-05-09T10:47:04.000Z (over 1 year ago)
- Last Synced: 2024-05-01T17:42:41.603Z (7 months ago)
- Topics: eslint, eslint-config
- Language: JavaScript
- Homepage: https://npmjs.com/package/@techassi/eslint-config
- Size: 322 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# eslint-config
This is my personal ESLint config. It supports JavaScript, TypeScript, Vue and Nuxt.
## Usage
### Add as a Dev Dependency
```shell
pnpm install -D eslint @techassi/eslint-config
```### Configure ESLint Config File
Add a ESLint config file, e.g. `.eslintrc` or `.eslintrc.json` - See
[here](https://eslint.org/docs/user-guide/configuring/configuration-files#configuration-file-formats) for valid file
names.```json
{
"extends": [
"@techassi"
]
}
```### Configure ESLint Ignore File
`.eslintignore`
```
dist
public
```This config is inspired by [@antfu/eslint-config](https://github.com/antfu/eslint-config).