1.0.3 • Published 7 months ago
eslint-config-endormoon v1.0.3
eslint-config-endormoon
This project can be used to add the endormoon standard to a typescript project. It is an arbitrary choice of lint rule to keep a typescript project clean.
Table of content
Installation
To install the config you need to add first eslint to your project.
npm install --save-dev eslint
Then you can add the endormoon config.
npm install --save-dev eslint-config-endormoon
Configuration
Add the eslint config file at the root of your project. Make sure your custom config extends of the eslint-config-endormoon. Look at the exemple below
// eslint.config.mjs
import eslintConfigEndormoon from 'eslint-config-endormoon';
export default [
...eslintConfigEndormoon,
// your cutom config here...
];