Skip to content

Instantly share code, notes, and snippets.

@dhoel
Created March 31, 2017 19:15
Show Gist options
  • Save dhoel/248ebcb808e14f8db5cdad69eef529cd to your computer and use it in GitHub Desktop.
Save dhoel/248ebcb808e14f8db5cdad69eef529cd to your computer and use it in GitHub Desktop.
{
"env": {
"browser": true,
"commonjs": true,
"es6": true
},
"extends": "eslint:recommended",
"parserOptions": {
"ecmaFeatures": {
"experimentalObjectRestSpread": true,
"jsx": true
},
"sourceType": "module"
},
"rules": {
"no-unused-vars": ["warn", { "vars": "local", "args": "none", "ignoreRestSiblings": false }],
"no-undef": 1,
"linebreak-style": [
"error",
"unix"
],
"quotes": [
1,
"single"
],
"semi": [
1
],
"no-extra-semi": 0
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment