@munierujp/eslint-config-typescript
v47.1.1
Published
ESLint Shareable Config for TypeScript
Downloads
791
Maintainers
Readme
@munierujp/eslint-config-typescript
ESLint Shareable Config for TypeScript
Requirements
- Node.js v20 or later
- ESLint v8
Installation
npm:
npm i -D @munierujp/eslint-config-typescript
Yarn:
yarn add -D @munierujp/eslint-config-typescript
pnpm:
pnpm add -D @munierujp/eslint-config-typescript
Usage
Add @munierujp/eslint-config-typescript
to the extends
section of your ESLint configuration file.
JavaScript:
module.exports = {
extends: [
'@munierujp/eslint-config-typescript'
// add other rulesets here if needed
]
}
YAML:
extends:
- @munierujp/eslint-config-typescript
# add other rulesets here if needed
JSON:
{
"extends": [
"@munierujp/eslint-config-typescript"
// add other rulesets here if needed
]
}