Skip to content

Instantly share code, notes, and snippets.

@tompao
Last active August 5, 2017 16:43
Show Gist options
  • Save tompao/9b0f1854087260d68303ce9f161e5c14 to your computer and use it in GitHub Desktop.
Save tompao/9b0f1854087260d68303ce9f161e5c14 to your computer and use it in GitHub Desktop.
eslint for ES6 in the browser
{
"extends": "airbnb-base",
"rules": {
"quotes": ["error", "double"],
"no-underscore-dangle": "off",
"spaced-comment": "off",
"no-console": "off",
"no-alert": "off"
},
"env": {
"es6": true,
"browser": true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment