Skip to content

Instantly share code, notes, and snippets.

@te-online
Last active December 22, 2017 10:51
Show Gist options
  • Save te-online/22b6a7f088dc3a3b7bf09b4b78225ae4 to your computer and use it in GitHub Desktop.
Save te-online/22b6a7f088dc3a3b7bf09b4b78225ae4 to your computer and use it in GitHub Desktop.
EsLint Config for Browser script.
{
"globals": {
// Free globals from errors here
"$": true
},
"env": {
"es6": false,
"node": false,
"browser": true
},
"extends": "eslint:recommended",
"parserOptions": {
"sourceType": "module"
},
"rules": {
"indent": [
1,
"tab"
],
"linebreak-style": [
1,
"unix"
],
"quotes": [
1,
"single"
],
"no-console": [
1
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment