https://github.com/noeldemartin/eslint-config
My ESLint rules
https://github.com/noeldemartin/eslint-config
Last synced: 7 months ago
JSON representation
My ESLint rules
- Host: GitHub
- URL: https://github.com/noeldemartin/eslint-config
- Owner: NoelDeMartin
- License: mit
- Created: 2020-12-08T17:23:38.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2023-12-17T12:23:00.000Z (almost 2 years ago)
- Last Synced: 2025-02-25T13:18:53.588Z (7 months ago)
- Language: TypeScript
- Homepage:
- Size: 279 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ESLint config
These are the ESLint rules I use in different projects. If you also want to use them, you're most welcome. You can install the packages like this:
```sh
npm install eslint @noeldemartin/eslint-config-typescript --save-dev
```And use them in your eslint config file:
```js
// .eslintrc.js
module.exports = {
extends: ['@noeldemartin/eslint-config-typescript'],
};
```