Skip to content

Instantly share code, notes, and snippets.

@CarlosDanielDev
Last active January 28, 2020 11:56
Show Gist options
  • Save CarlosDanielDev/99a90bc9deb5496d13ab870990fe9600 to your computer and use it in GitHub Desktop.
Save CarlosDanielDev/99a90bc9deb5496d13ab870990fe9600 to your computer and use it in GitHub Desktop.
module.exports = {
env: {
es6: true,
node: true,
},
extends: [
'airbnb-base',
'prettier'
],
plugins: ['prettier'],
globals: {
Atomics: 'readonly',
SharedArrayBuffer: 'readonly',
},
parserOptions: {
ecmaVersion: 2018,
sourceType: 'module',
},
rules: {
"prettier/prettier": "error",
"class-methods-use-this": "off",
"no-param-reassign": "off",
"camelcase":"off",
"no-unused-vars": ["error", {"argsIgnorePattern": "next"}]
},
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment