Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/transitive-bullshit/eslint-config
Personal eslint config.
https://github.com/transitive-bullshit/eslint-config
eslint eslint-config
Last synced: 22 days ago
JSON representation
Personal eslint config.
- Host: GitHub
- URL: https://github.com/transitive-bullshit/eslint-config
- Owner: transitive-bullshit
- License: mit
- Created: 2024-04-02T03:02:56.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-07-01T06:12:28.000Z (4 months ago)
- Last Synced: 2024-10-12T17:24:33.956Z (27 days ago)
- Topics: eslint, eslint-config
- Language: JavaScript
- Homepage:
- Size: 304 KB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- Funding: .github/funding.yml
- License: license
Awesome Lists containing this project
README
# Forked from `@remix-run/eslint-config`
My personal ESlint config used for all projects.
## Installation
First, install this package along with ESLint in your project. **This package requires at least version 8.1 of ESLint**
```sh
npm install -D eslint @fisch0920/eslint-config
```Then create a file named `.eslintrc.js` in the root of the project/package:
```js filename=.eslintrc.js
module.exports = {
extends: ['@fisch0920/eslint-config']
}
```For Node-only projects (no React/browser code), use the `node` config:
```js filename=.eslintrc.js
module.exports = {
extends: ['@fisch0920/eslint-config/node']
}
```## License
MIT © [Travis Fischer](https://twitter.com/transitive_bs)