Skip to content

Instantly share code, notes, and snippets.

@cggaurav
Created January 2, 2017 02:34
Show Gist options
  • Save cggaurav/e3bba568fa410cf9286523ae0fab4689 to your computer and use it in GitHub Desktop.
Save cggaurav/e3bba568fa410cf9286523ae0fab4689 to your computer and use it in GitHub Desktop.
.jshintrc
{
"ecmaFeatures": {
"modules": true
},
"env": {
"node": true
},
"parser": "babel-eslint",
"rules": {
"strict": [2, "never"],
"indent": [2, 4, { "SwitchCase": 1 }],
"no-extra-semi": 2,
"no-undef": 1,
"spaced-comment": [2, "always"],
"keyword-spacing": ["error", { "after": true }]
},
"plugins": [],
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment