Skip to content

Instantly share code, notes, and snippets.

@backflip
Created April 22, 2015 17:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save backflip/e8202ffc85c839267023 to your computer and use it in GitHub Desktop.
Save backflip/e8202ffc85c839267023 to your computer and use it in GitHub Desktop.
.eslintrc
// See http://eslint.org/docs/rules/ for default config
{
"env": {
"browser": true,
"node": true // Gulp
},
"rules": {
// Best practices
"consistent-return": 2,
"wrap-iife": [2, "inside"],
// Stylistic issues
"brace-style": 2,
"no-trailing-spaces": 2,
"no-underscore-dangle": 0,
"quotes": [2, "single"],
"space-after-keywords": 2,
"space-in-brackets": 2
},
"globals": {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment