Skip to content

Instantly share code, notes, and snippets.

@thelinuxlich
Created March 1, 2016 14:57
Show Gist options
  • Select an option

  • Save thelinuxlich/3d851d6d4e834e662333 to your computer and use it in GitHub Desktop.

Select an option

Save thelinuxlich/3d851d6d4e834e662333 to your computer and use it in GitHub Desktop.
eslint.js
module.exports = {
"rules": {
"no-console": false,
"indent": [
2,
4
],
"quotes": [
2,
"double"
],
"linebreak-style": [
2,
"unix"
],
"semi": [
2,
"always"
]
},
"env": {
"es6": true,
"node": true,
"browser": true
},
"extends": "eslint:recommended"
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment