Skip to content

Instantly share code, notes, and snippets.

@paflopes
Created August 5, 2019 14:47
Show Gist options
  • Save paflopes/3b2e76bedda4ff22a995102ac58edae0 to your computer and use it in GitHub Desktop.
Save paflopes/3b2e76bedda4ff22a995102ac58edae0 to your computer and use it in GitHub Desktop.
module.exports = {
env: {
commonjs: true,
es6: true,
node: true,
mongo: true,
mocha: true
},
extends: [
'airbnb-base',
],
globals: {
Atomics: 'readonly',
SharedArrayBuffer: 'readonly',
},
parserOptions: {
ecmaVersion: 2018,
},
rules: {
'comma-dangle': ["error", "never"],
indent: ['error', 2],
'max-depth': ["error", 4]
},
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment