Skip to content

Instantly share code, notes, and snippets.

@dragonman225
Last active January 23, 2020 09:13
Show Gist options
  • Save dragonman225/72a35233d96b45c6447ff1d8b67204e5 to your computer and use it in GitHub Desktop.
Save dragonman225/72a35233d96b45c6447ff1d8b67204e5 to your computer and use it in GitHub Desktop.
{
"env": {
"browser": true,
"commonjs": true,
"es6": true,
"node": true
},
"extends": "eslint:recommended",
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parserOptions": {
"ecmaVersion": 2018
},
"rules": {
"indent": [
"error",
2,
{
"SwitchCase": 1
}
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"double",
{
"avoidEscape": true,
"allowTemplateLiterals": true
}
],
"semi": [
"error",
"never"
],
"no-console": "off"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment