Skip to content

agirorn/eslint-config-agirorn

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

eslint-config-agirorn

These are my eslint rules there are many like it but this one is mine.

Usage

Install module

npm i eslint eslint-config-agirorn eslint-plugin-import@latest --save-dev

Add extends to .eslintrc

{
  "extends": "agirorn"
}

Then augmented for my personal taste.

  • no-use-before-define (airbnb issue #872) Function hoisting is a javascript standard and assists with top down reading of code from least complex part of code to more complex parts.