Skip to content

Instantly share code, notes, and snippets.

@drguildo
Created June 19, 2017 12:56
Show Gist options
  • Save drguildo/36dbf2467eca25465e6dd032e65f2494 to your computer and use it in GitHub Desktop.
Save drguildo/36dbf2467eca25465e6dd032e65f2494 to your computer and use it in GitHub Desktop.
My .eslintrc.json
{
"env": {
"es6": true,
"node": true
},
"parserOptions": {
"sourceType": "module"
},
"rules": {
"no-const-assign": "warn",
"no-this-before-super": "warn",
"no-undef": "warn",
"no-unreachable": "warn",
"no-unused-vars": "warn",
"prefer-const": "warn",
"constructor-super": "warn",
"valid-typeof": "warn",
"semi": "warn",
"quotes": "warn"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment