Skip to content

Instantly share code, notes, and snippets.

@pjsvis
Created November 20, 2016 15:05
Show Gist options
  • Save pjsvis/a13e364ee2c8dc35e58396f9ca0d3681 to your computer and use it in GitHub Desktop.
Save pjsvis/a13e364ee2c8dc35e58396f9ca0d3681 to your computer and use it in GitHub Desktop.
{
"env": {
"browser": true
},
"globals": {
"angular": false, // IE Cannot overwrite angular
"agGrid": false,
"$": false,
"_": false,
"require" : false,
"html_beautify": false,
"ActiveXObject": false
},
"extends": "eslint:recommended",
"rules": {
"indent": [
"error",
4
],
"linebreak-style": [
"error",
"windows"
],
"quotes": 0, // We mix single and double quotes so switch off
"semi": [
"error",
"always"
],
"no-console": 0 // We can get rid of console calls at build time
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment