https://github.com/munierujp/eslint-config-typescript
ESLint Shareable Config for TypeScript
https://github.com/munierujp/eslint-config-typescript
Last synced: 8 months ago
JSON representation
ESLint Shareable Config for TypeScript
- Host: GitHub
- URL: https://github.com/munierujp/eslint-config-typescript
- Owner: munierujp
- License: mit
- Created: 2022-10-05T17:47:34.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-11-23T05:12:12.000Z (8 months ago)
- Last Synced: 2024-11-23T06:18:22.657Z (8 months ago)
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/@munierujp/eslint-config-typescript
- Size: 455 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://badge.fury.io/js/%40munierujp%2Feslint-config-typescript)
[](https://github.com/munierujp/eslint-config-typescript/actions/workflows/lint.yml)
[](https://github.com/eslint-recommended)# @munierujp/eslint-config-typescript
ESLint Shareable Config for TypeScript
## Requirements
- Node.js v20 or later
- ESLint v8## Installation
npm:
```sh
npm i -D @munierujp/eslint-config-typescript
```Yarn:
```sh
yarn add -D @munierujp/eslint-config-typescript
```pnpm:
```sh
pnpm add -D @munierujp/eslint-config-typescript
```## Usage
Add `@munierujp/eslint-config-typescript` to the `extends` section of your [ESLint configuration file](https://eslint.org/docs/latest/use/configure/configuration-files-deprecated).
JavaScript:
```javascript
module.exports = {
extends: [
'@munierujp/eslint-config-typescript'
// add other rulesets here if needed
]
}
```YAML:
```yaml
extends:
- @munierujp/eslint-config-typescript
# add other rulesets here if needed
```JSON:
```jsonc
{
"extends": [
"@munierujp/eslint-config-typescript"
// add other rulesets here if needed
]
}
```## Related Packages
- [@munierujp/eslint-config](https://www.npmjs.com/package/@munierujp/eslint-config)