Skip to content

Instantly share code, notes, and snippets.

@nesffer
Last active October 5, 2017 19:03
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nesffer/7addd80c957de4cdd66a299f6793440b to your computer and use it in GitHub Desktop.
Save nesffer/7addd80c957de4cdd66a299f6793440b to your computer and use it in GitHub Desktop.
.eslintrc.js
module.exports = {
"env": {
"browser": true,
"es6": true,
"node": true
},
"extends": "standard",
"plugins": [
"standard",
"promise"
],
"rules": {
"indent": ["error", 4],
"quotes": ["error", "single"],
"semi": ["error", "always"],
"no-trailing-spaces": ["error", { "skipBlankLines": true }],
"no-var": ["error"]
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment