Skip to content

Instantly share code, notes, and snippets.

@philsinatra
Created November 10, 2017 18:10
Show Gist options
  • Save philsinatra/04a854a7a9760ab579861488cdee4f4f to your computer and use it in GitHub Desktop.
Save philsinatra/04a854a7a9760ab579861488cdee4f4f to your computer and use it in GitHub Desktop.
ESLint Configuration File
{
"env": {
"es6": true,
"browser": true
},
"extends": "eslint:recommended",
"rules": {
"no-console": 0,
"no-global-assign": ["error", { "exceptions": ["Object"] }],
"indent": 0,
"linebreak-style": ["error", "unix"],
"quotes": ["error", "single"],
"semi": ["error", "always"]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment