Skip to content

Instantly share code, notes, and snippets.

@m-wynn
Created March 3, 2017 19:28
Show Gist options
  • Save m-wynn/be9843588b59ce8e61b99120cb1a9d67 to your computer and use it in GitHub Desktop.
Save m-wynn/be9843588b59ce8e61b99120cb1a9d67 to your computer and use it in GitHub Desktop.
module.exports = {
"env": {
"browser": true,
"es6": true,
"jquery": true
},
"extends": "eslint:recommended",
"rules": {
"indent": [
"error",
2
],
"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