Created
March 3, 2020 13:12
-
-
Save thenriquedb/5d78a160bd5b451aed51581552a66f6d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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