Skip to content

NoelDeMartin/eslint-config

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

48 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ESLint config

These are the ESLint rules I use in different projects. If you also want to use them, you're most welcome. You can install the packages like this:

npm install eslint @noeldemartin/eslint-config-typescript --save-dev

And use them in your eslint config file:

// .eslintrc.js
module.exports = {
    extends: ['@noeldemartin/eslint-config-typescript'],
};