eslint-config-os-team-node
v1.4.2
Published
ESLint rules for Node.js, including TypeScript.
Maintainers
Readme
eslint-config-os-team-node 
ESLint rules for Node.js, including TypeScript.
Installation
Step 1. Install the package
Install the exact version (-E) of the package in devDependencies (-D) using the following command:
yarn add -DE eslint-config-os-team-nodeMake sure eslint and jest packages are installed.
Step 2. Extend your ESLint config
const nodeConfig = require('eslint-config-os-team-node');
module.exports = [
...nodeConfig.configs.recommended,
// Your config
{
files: ['**/*.{js,mjs,cjs,ts,jsx,tsx}'],
rules: {},
},
];