Skip to content

Instantly share code, notes, and snippets.

@slopeofhope81
Forked from coryhouse/.eslintrc.json
Created March 21, 2018 09:59
Show Gist options
  • Save slopeofhope81/a721e9d44ad07beb7a68fbff6c4018b6 to your computer and use it in GitHub Desktop.
Save slopeofhope81/a721e9d44ad07beb7a68fbff6c4018b6 to your computer and use it in GitHub Desktop.
.eslintrc.json file for "Building a JavaScript Development" Pluralsight course
{
"root": true,
"extends": [
"eslint:recommended",
"plugin:import/errors",
"plugin:import/warnings"
],
"parserOptions": {
"ecmaVersion": 7,
"sourceType": "module"
},
"env": {
"browser": true,
"node": true,
"mocha": true
},
"rules": {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment