Skip to content

Instantly share code, notes, and snippets.

@faelplg
Created September 27, 2018 22:06
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 faelplg/3458130fc9b7950b58ada03882724037 to your computer and use it in GitHub Desktop.
Save faelplg/3458130fc9b7950b58ada03882724037 to your computer and use it in GitHub Desktop.
My ESLint settings.
{
"env": {
"browser": true,
"commonjs": true,
"es6": true,
"node": true
},
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"rules": {
"indent": [
"error",
2
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"always"
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment