Skip to content

Instantly share code, notes, and snippets.

@thenriquedb
Created March 3, 2020 13:12
Show Gist options
  • Save thenriquedb/5d78a160bd5b451aed51581552a66f6d to your computer and use it in GitHub Desktop.
Save thenriquedb/5d78a160bd5b451aed51581552a66f6d to your computer and use it in GitHub Desktop.
module.exports = {
env: {
es6: true,
node: true
},
extends: ["airbnb-base"],
globals: {
Atomics: "readonly",
SharedArrayBuffer: "readonly"
},
parserOptions: {
ecmaVersion: 2018,
sourceType: "module"
},
rules: {
"class-methods-use-this": "off",
"no-param-reassign": "off",
camelcase: "off",
quotes: [2, "single", { avoidEscape: true }],
"comma-dangle": "off",
"object-curly-newline": ["error", { multiline: true, minProperties: 5 }],
"no-unused-vars": ["error", { argsIgnorePattern: "next" }]
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment