Skip to content

Instantly share code, notes, and snippets.

@gabmontes
Created March 23, 2017 18:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gabmontes/b1ba34503bce36cbb7d50e8ff9bea4a1 to your computer and use it in GitHub Desktop.
Save gabmontes/b1ba34503bce36cbb7d50e8ff9bea4a1 to your computer and use it in GitHub Desktop.
ESLint configuration template
{
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "script",
"ecmaFeatures": {
"globalReturn": false,
"impliedStrict": false,
"jsx": true,
"experimentalObjectRestSpread": false
}
},
"parser": "espree",
"env": {
"browser": false,
"es6": false,
"mocha": false,
"node": false
},
"globals": {},
"plugins": [],
"rules": {},
"settings": {},
"root": true,
"extends": []
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment