Skip to content

Instantly share code, notes, and snippets.

@calvimor
Created January 23, 2017 14:58
Show Gist options
  • Save calvimor/7949f1d288deffc3e7074b42d9651105 to your computer and use it in GitHub Desktop.
Save calvimor/7949f1d288deffc3e7074b42d9651105 to your computer and use it in GitHub Desktop.
.eslintrc.json file for "Building a JavaScript Development"
{
"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