Skip to content

Instantly share code, notes, and snippets.

@jeffschwartz
Created August 25, 2018 12:03
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 jeffschwartz/493f35054f61d6c195e5871d28ee4466 to your computer and use it in GitHub Desktop.
Save jeffschwartz/493f35054f61d6c195e5871d28ee4466 to your computer and use it in GitHub Desktop.
.eslintrc.json
{
"extends": "standard",
"parserOptions": {
"sourceType": "module"
},
"rules": {
"indent": [
"error",
4
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"double"
],
"semi": [
"error",
"always"
],
"no-console": 0,
"eol-last": "off",
"no-mixed-operators": "off"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment