@munierujp/eslint-config-typescript
v47.1.1
Published
ESLint Shareable Config for TypeScript
Downloads
1,152
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-typescriptYarn:
yarn add -D @munierujp/eslint-config-typescriptpnpm:
pnpm add -D @munierujp/eslint-config-typescriptUsage
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 neededJSON:
{
"extends": [
"@munierujp/eslint-config-typescript"
// add other rulesets here if needed
]
}