Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/movahhedi/eslint-config
https://github.com/movahhedi/eslint-config
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/movahhedi/eslint-config
- Owner: movahhedi
- Created: 2024-07-21T08:11:59.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-09-09T06:29:29.000Z (4 months ago)
- Last Synced: 2024-09-09T07:53:28.337Z (4 months ago)
- Language: TypeScript
- Size: 714 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# @movahhedi/eslint-config
## Install
If you prefer to set up manually:
```bash
pnpm i -D eslint @movahhedi/eslint-config
```And create `eslint.config.mjs` in your project root:
```js
// eslint.config.mjs
import movahhediConfig from "@movahhedi/eslint-config";export default movahhediConfig();
```Or if you want to add your own rules:
```js
// eslint.config.mjs
import movahhediConfig from "@movahhedi/eslint-config";export default [
...movahhediConfig(),
{
rules: {
// your rules
},
},
];
```