Skip to content

NarrativeScience-old/eslint-config-narrative-science

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Narrative Science ESLint Base

This package extends the Airbnb Lint Package

Use

This has been built primary for the internal use at Narrative Science. Make sure it has been installed in your package.json file, and then create an .eslintrc file that contains the following:

{
   "parser": "babel-eslint",
   "env": {
     "browser": true,
     "jquery": true,
     "node": true
   },
   "extends": "narrative-science",
   "ecmaFeatures": {
     "experimentalObjectRestSpread": true
   },
   "plugins": [
     "babel",
     "react"
   ],
 }