Skip to content

Instantly share code, notes, and snippets.

@wfjsw
Last active October 26, 2018 14:54
Show Gist options
  • Save wfjsw/5ccb160d8a2625e8c8e8268a8fc34edd to your computer and use it in GitHub Desktop.
Save wfjsw/5ccb160d8a2625e8c8e8268a8fc34edd to your computer and use it in GitHub Desktop.
{
"env": {
"browser": false,
"commonjs": true,
"es6": true,
"node": true
},
"extends": "eslint:recommended",
"parserOptions": {
"sourceType": "script",
"ecmaVersion": 2017
},
"rules": {
"no-console": "off",
"indent": "off",
"linebreak-style": [
"warn",
"unix"
],
"quotes": [
"warn",
"single"
],
"semi": [
"warn",
"never"
],
"no-const-assign": "warn",
"no-this-before-super": "warn",
"no-undef": "error",
"no-unreachable": "error",
"no-unused-vars": "warn",
"constructor-super": "warn",
"valid-typeof": "warn",
"no-extra-semi": "warn",
"no-return-await": "warn",
"no-extra-parens": "warn"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment