Skip to content

Instantly share code, notes, and snippets.

@faytranevozter
Created November 9, 2019 08:17
Show Gist options
  • Save faytranevozter/48de3dadb06e3c098abbc948bf0dae1b to your computer and use it in GitHub Desktop.
Save faytranevozter/48de3dadb06e3c098abbc948bf0dae1b to your computer and use it in GitHub Desktop.
.eslintrc.js
module.exports = {
env: {
es6: true,
node: true,
},
extends: [
'airbnb-base'
],
plugins: [
],
globals: {
Atomics: 'readonly',
SharedArrayBuffer: 'readonly',
},
parserOptions: {
ecmaVersion: 2018,
sourceType: 'module',
},
rules: {
"no-console": "off",
"prefer-template": "off",
"semi": ["error", "never"],
"no-shadow": "off",
"indent": ["error", 4]
},
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment